jquery不在IE中工作,Chrome在FF中工作

时间:2013-04-22 13:13:53

标签: javascript jquery

我对我的代码做了最后一分钟的更改,并意识到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>

2 个答案:

答案 0 :(得分:1)

大多数浏览器依赖type而不是language来触发JavaScript解释器。因此,如果您放置<script type="text/javascript"></script>,则甚至不需要指定languagelanguage属性已暂时弃用。

请参阅this问题。

将其替换为您目前拥有的内容:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

此外,对于HTTPS问题,请使用以下内容:

<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

或者您可以直接指定HTTPS

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

答案 1 :(得分:0)

我正在重复J. Ghyllebert之前所说的,你的网站是否使用https?

请尝试下载最新的js文件&amp;保存到本地和从您网站的本地地址引用它。