我正在尝试将选中的复选添加到输入复选框,但由于UI增强,我无法点击输入。
<div class="ez-checkbox">
<input type="checkbox" name="AlertCB" value="ir-event" class="ez-hide">
</div>
$(".ez-checkbox").live("click", function(){
var findme = $('this').find("input");
//alert(findme)
$('findme').prop('checked', true);
});
我开始编写代码来应用选中的复选框,但到目前为止还没有应用支票的运气。
请记住,有多个复选框。
答案 0 :(得分:0)
试试这个:
$('body').on('click', '.ez-checkbox', function(){
$(this).children('.ez-hide').prop('checked', true);
});
这将使用.on
(而不是.live
)来监听ez-checkbox
上的点击,然后找到下一个ez-hide
并“检查”它。