在jQuery jTemplates中获取Checkbox状态

时间:2011-12-12 16:18:38

标签: jquery jtemplates

我有以下jtemplate

{#foreach $T.d as post}
<input type='checkbox' >
{#/for}

DIV中的模板渲染。我无法在div

中选中复选框

我的代码找到下面的复选框

$("#div").find(":checkbox:checked").length

它始终返回0

1 个答案:

答案 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"/>