我有以下jtemplate
{#foreach $T.d as post}
<input type='checkbox' >
{#/for}
DIV中的模板渲染。我无法在div
中选中复选框我的代码找到下面的复选框
$("#div").find(":checkbox:checked").length
它始终返回0
。
答案 0 :(得分:0)
对我来说似乎没问题你会得到0这里是demo
这是js
$('#btn').click(function(){
alert($("#div").find(":checkbox:checked").length)
});
和html
<div id="div">
<input type='checkbox' >
</div>
<input type="button" id="btn" value="test"/>