发布时间:2014-07-01 16:59:13
jquery的extend方法的用法1. [代码][JavaScript]代码 01<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"02"http://www.w3.org/TR/html4/strict.dtd">03<html xmlns="http://www.w3.org/1999/xhtml">04 <head>05 <meta content="text/html; charset=u.........【阅读全文】
发布时间:2014-07-01 16:54:51
1. [代码][JavaScript]代码 01// remember to change every instance of "pluginName" to the name of your plugin!02// the semicolon at the beginning is there on purpose in order to protect the integrity03// of your scripts when mixed with incomplete objects, arrays, etc.04;(functi.........【阅读全文】
发布时间:2014-07-01 16:50:20
maco精选的一些jQuery代码,也许你从中可以举一反三[代码] [JavaScript]代码001<p>002 <h3><span style="color:#CC0000;">★ 使用jQuery来切换样式表</h3>003 <pre class="brush:js">$("link[media='screen']").attr("href", "Alternative.css");</pre>004</p>005 006<p>007 .........【阅读全文】
发布时间:2014-07-01 16:41:04
此 Jquery插件可支持弹出的日期控件ID,默认: $(this).attr("id") + "Calendar"、三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000),默认:200、是否显示日期或年空白处的前后月的补充,默认:true、目标对象是否设为只读,默认:true、日期上限,默认:NaN(不限制)、日期下.........【阅读全文】
发布时间:2014-07-01 16:31:42
java反射技术实例1. [脚本代码][Java]代码 package com.gufengxiachen.java.reflectiontest;public class Person {private String name;private int age;private static int total;public Person(){super();total++;}public Person(String name,int age){super();this.name=name;this.a.........【阅读全文】