我对我的代码进行了最后一分钟的更改,并意识到 jQuery 在 IE 和 Chrome 中不起作用,但在 FF 中运行良好。我设法将一些现有的 jQuery 更改为 js,它在所有浏览器中都可以正常工作,但是,下面的 jQuery 无法在 IE 和 Chrome 中工作。
我希望我不需要将此代码更改为纯 JS,所以希望有一个解决方法,任何想法我做错了什么?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#address').change(function() {
$('#mycheckboxdiv').toggle();
});
$('#name').click(function() {
alert("well hello there.");
});
$('#school').keyup(function(e) {
if (e.which == 9)
alert("great school");
});
});
</script>
</head>
<body>
<form name="myform" method="post" action="myform.php" id="myform">
<table>
<tr>
<td><b>Name:</b></td>
<td><input name="name" id="name" value="" type="text" size="20" maxlength="20"/></td>
</tr>
<tr>
<td valign="top">
<input name="address" value="NO" type="checkbox"> NO<br>
<input name="address" id="address" value="YES" type="checkbox"> YES</td>
</tr>
<tr id="mycheckboxdiv" style="display:none">
<td colspan="2"></td>
</tr>
</table>
</form>
</body>
</html>