我有一个观点,使用文本!在我的网页中呈现 html 的模板。在我quote.html
的文字中!,我有一种形式:
$(document).ready(function() {
alert("outside checkbox event");
$('input[name=chkVAT]').change(function(){
if($('input[name=chkVAT]').is(':checked')){
alert('Checked');
} else {
alert('Not checked');
}
});
});
<form>
.......
<input type="checkbox" name="chkVAT" id="chkVAT" />
<div id="valVAT"><%=VAT%>
</form>
只有alert("outside checkbox event")
在工作。我不知道为什么其他 3 警报不起作用。
请有任何想法。谢谢。