這不會在Chrome爲我工作onchange事件不火對鉻ASP複選框僅
<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米)不是在同一
@Zenith爲了獲得DOM元素,我認爲 –
你檢查了你的html ...是否所有大括號關閉? –
@roasted不應該只有一個具有該ID的元素,所以'$('#chkFullReIndex')'就足夠了? – lifetimes