为什么检查和未检查在 asp.net 中不起作用,就像检查的属性没有显示一样?我正在尝试使用 jquery 将检查和未检查的布尔值放入警报中?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.8.1.js" type="text/javascript"></script>
<script src="JScript1.js" type="text/javascript"></script>
<script type="text/javascript">
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:CheckBox ID="CheckBox1" runat="server" />
</div>
</form>
</body>
</html>
$(document).ready(function () {
$("#CheckBox1").click(function () {
if ($(this).is(':checked')) {
alert("true");
} else {
alert("false");
}
});
});