我的 html 页面中有一个复选框列表
<input type="checkbox" id="example1" value="1">
<input type="checkbox" id="example2" value="2">
通过 php 生成,根据数据库表的内容,包含要显示的元素的详细信息。我不知道页面中随时会有多少复选框,因为数量会根据数据库内容而变化。
现在,为了回复我想使用的复选框的点击
$('#example').mousedown(function() {
if (!$(this).is(':checked')) {
this.checked = confirm("Are you sure?");
$(this).trigger("change");
}
});
但这种方式意味着知道我不知道的复选框的名称/ID,因为它是生成的......那么,我如何生成我的复选框并控制通过jquery被击中?