jQuery.each的function中有哪些参数
Posted 佟舟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery.each的function中有哪些参数相关的知识,希望对你有一定的参考价值。
1、没有参数
$("img").each(function(){
$(this).toggleClass("example");
});
2、有一个参数,这个参数为index
$("img").each(function(i){
this.src = "test" + i + ".jpg";
});
3、有两个参数,第一个参数为index,第二个参数为dom元素本身
$("button").click(function () {
$("div").each(function (index, domEle) {
// domEle == this
$(domEle).css("backgroundColor", "yellow");
if ($(this).is("#stop")) {
$("span").text("Stopped at div index #" + index);
return false;
}
});
});
以上是关于jQuery.each的function中有哪些参数的主要内容,如果未能解决你的问题,请参考以下文章
jquery中的each方法,$.each this.each $.fn.each
Uncaught TypeError: jQuery(...).each is not a function after update wordpress theme