$("#div1 :text").each(function () {
var this_id = $(this).attr("id");
alert(this_id);
}
方法二
function $id(selector){
$(""+ selector +" :text").each(function () {
//coding
}
}$id("#div1"); //调用传参
方法三
$('#div1').arrt("id","div2");
html代码
<div id="div1"></div>
时间: 2024-10-05 12:52:32