这在 chrome 中对我不起作用
<asp:CheckBox ID="chkFullReIndex" runat="server" ClientIDMode="Static" onchange="funCalled();" />
<script>
function funCalled() {
if ($('#chkFullReIndex')[0].checked) {
alert('check box checked')
}
else {
alert('check box not checked')
}
}
</script>
这在 Firefox(21.0)中工作得很好,但在 chrome(版本 27.0.1453.94 m)中没有工作,我没有收到任何控制台错误
任何想法