1
代码展示了在用户未输入值时,
//如何在文本类型的input域中保留
//一个默认值
wap_val = [];
$(".swap").each(function(i){
wap_val[i] = $(this).val();
$(this).focusin(function(){
if ($(this).val() == swap_val[i]) {
$(this).val("");
}
}).focusout(function(){
if ($.trim($(this).val()) == "") {
$(this).val(swap_val[i]);
}});});
2
3
支持
//例如,就table来说,以前你会用
//.live()
$("table").each(function(){
$("td",this).live("hover",function(){
$(this).toggleClass("hover");
});
});
//现在用
$("table").delegate("td","hover",function(){
$(this).toggleClass("hover");
});
4.如何把已创建的元素动态地添加到DOM中:
5
var cloned = $('#somediv').clone();
6
7.JQ中定位
函数:
$(element).center();
8.如何把有着某个特定名称的所有元素的值都放到一个数组中:
9.在jQuery中如何使用.siblings()来选择同辈元素
10.正反选
Box]").attr("checked",!tog);
tog = !tog;
});