我在弹出窗口中有一个复选框列表。我在 jquery 中使用了 selectall checkboxlist items 函数。问题是当我检查全选复选框时,它会选择弹出窗口和网页中的所有复选框列表项。如何使其仅在弹出窗口中仅选择复选框列表项。我的代码为
<td> <div style="text-align: left; margin: auto;">
<asp:CheckBox ID="chkSelectReportAll" runat="server" Text="Select All" onclick="checkall()"/>
<asp:CheckBoxList ID="chkReportLst" runat="server">
</asp:CheckBoxList>
</div>
</td>
我的脚本为
function checkall() {
$('#MainContent_uscOptionsPOPUP_chkSelectReportAll').click(
function () {
if (document.getElementById('chkReportLst'))
$("INPUT[type='checkbox']").attr('checked', $('#MainContent_uscOptionsPOPUP_chkSelectReportAll').is(':checked'));
});
}
有什么建议么 ??