点击前: 点击后:
html部分:
<button>Change colors</button>
<span></span>
<div>内容一</div>
<div>内容二</div>
<div>内容三</div>
<div>内容四</div>
<div id="stop">内容五--Stop here</div>
<div>内容六</div>
<div>内容七</div>
<div>内容八</div>
js部分:
$(function() {
$("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;
}
});
});
});
时间: 2024-11-14 13:02:54