var array = [1,2,3,4]; $(array).each(function(index){ alert(this); }); $.each(array,function(index){ alert(this); });
$.contains($("div")[],$("p")[0]); //检测第一个p标签是不是在第一个div标签内。
$.isEmptyObject({}); //返回 true $.isEmptyObject({foo:"bar"}); //返回false
$.extend({foo:"aa"},{bar:"bb"}); //结果为:{foo:"aa",bar:"bb"}
if($.browser.msie) alert("浏览器是IE:"+$.browser.version); if($.browser.mozilla) alert("浏览器是Firefox:"+$.browser.version);
$(e.currentTarget).parent("ul")//查看父元素,满足条件返回结果,不满足返回为空 $(e.currentTarget).parents("ul")[0]//返回所有满足条件的祖先元素,[0]表示获取距离最近的一个结果
$(".js-groupStarResultList:visible").find(".flex-control-nav li a").index($(".flex-active"));
//.live() $("table").each(function () { $("td", this).live("hover", function () { $(this).toggleClass("hover"); }); }); //现在用 $("table").delegate("td", "hover", function () { $(this).toggleClass("hover"); });
var cloned = $(‘#somediv‘).clone();
// 不这样做 $(‘#nav li‘).click(function () { $(‘#nav li‘).removeClass(‘active‘); $(this).addClass(‘active‘); }); //替代做法是 $(‘#nav li‘).click(function () { $(this).addClass(‘active‘).siblings().removeClass(‘active‘); });
$(‘#theImage‘).attr(‘src‘, ‘image.jpg‘).load(function () { alert(‘This Image Has Been Loaded‘); });
原文:http://www.cnblogs.com/chenlogin/p/5103783.html