标签:tar abs clone pos this demo jquer pagex res
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
var el = $(‘#id‘);
el.html(el.html().replace(/word/ig, ‘‘));
3
$(‘button.someClass‘).live(‘click‘, someFunction);
//注意,在jQuery 1.4.2中,delegate和undelegate选项
//被引入代替live,因为它们提供了更好的上下文支持
//例如,就table来说,以前你会用
//.live()
$("table").each(function(){
$("td", this).live("hover", function(){
$(this).toggleClass("hover");
});
});
//现在用
$("table").delegate("td", "hover", function(){
$(this).toggleClass("hover");
});
4
5
var cloned = $(‘#somediv‘).clone();
6
7
JQ中定位
8
var arrInputValues = new Array();
$("input[name=‘table[]‘]").each(function(){
arrInputValues.push($(this).val());
});
9
$(‘#nav li‘).click(function(){
$(‘#nav li‘).removeClass(‘active‘);
$(this).addClass(‘active‘);
});
//替代做法是
$(‘#nav li‘).click(function(){
$(this).addClass(‘active‘).siblings().removeClass(‘active‘);
});
10
正反选
var tog = false;
11
$(document).ready(function() {
$(document).mousemove(function(e){
$(’#XY’).html(”X Axis : ” + e.pageX + ” | Y Axis ” + e.pageY);
});
});
12
$("ul li").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
13
$(‘#theImage‘).attr(‘src‘, ‘image.jpg‘).load(function() {
alert(‘This Image Has Been Loaded‘);
});
14
var dt = new Date();
dt.setSeconds(dt.getSeconds() + 60);
document.cookie = "cookietest=1; expires=" + dt.toGMTString();
var cookiesEnabled = document.cookie.indexOf("cookietest=") != -1;
if(!cookiesEnabled) {
//没有启用cookie
}
15
var date = new Date();
date.setTime(date.getTime() + (x * 60 * 1000));
$.cookie(‘example‘, ‘foo‘, { expires: date });
标签:tar abs clone pos this demo jquer pagex res
原文地址:http://www.cnblogs.com/wangxiaoshuai0401/p/6027572.html