$("#allClass").click(function(){
var temp=false;
if($(this).attr("checked"))
{
temp=true;
}
$("input[name='classNameB']").each(function(){
$(this).attr("checked",temp);
});
});
这里$("input[name='classNameB']").each(function(){是可以获取的,但是用ajax生成后的checkbox,上面那段话就没用了。
if not rs.bof and not rs.eof then
Response.Write("<ul>")
do while not rs.eof
Response.Write("<li style='display:block;float:left;list-style:none;margin-left:10px;'><input type='checkbox' value="& Trim(rs("DCODE")) &" name='classNameB' style='border-width:0;'>"& Trim(rs("DNAME"))&"</li>")
rs.movenext
loop
Response.Write("</ul>")
end if
上面是ajax生成的checkbox,名字同样是classNameB,但全选按钮没效果。请问什么原因呢?
不知怎么回事,现在好了