以下是我的代碼。當我選擇複選框時,文本不會改變。 複選框的文本應該改變,但不是。選擇複選框文本不變
<html>
<head>
<title>OX</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript">
$('#checkbox1').on('change', function() {
window.alert(5 + 6);
if ($('#checkbox1').is(':checked')) {
window.alert(5 + 6);
$("#description").html("Your Checked 1");
} else {
$("#description").html("No check");
}
});
</script>
</head>
<body>
<input type="checkbox" value="0" id="checkbox1" name=""/> Answer one <br/></input>
<span id="description"> Hi Your Text will come here </span>
</body>
</html>
你正在運行的代碼之前存在的元素。查看$(document).ready,以便在dom準備就緒之前不會觸發代碼https://learn.jquery.com/using-jquery-core/document-ready/ –
或..移動您的JS代碼BELOW HTML – Zak
另外,[''](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input)是一個[「空元素」](https://開發者。 mozilla.org/en-US/docs/Glossary/empty_element),這意味着它不能包含任何子節點。我建議使用['