chrome中不支持对象错误

时间:2012-08-05 12:59:02

标签: javascript jquery html

这是我的代码:

<html>
<head>
<script type="text/javascript" language="javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript" language="javascript">
    $(document).ready(function(){
        alert('hei');
    });
</script>
</head>
<body>
  <input type="button" id="btn" />
</body>
</html>

我在$(document).ready上收到“不支持的对象”错误。我也收到了这个错误:Uncaught SyntaxError: Unexpected token ILLEGAL

1 个答案:

答案 0 :(得分:1)

您的代码似乎是正确的,看起来没有加载jQuery文件,验证它是否有正确的路径。

这有效:

<html>                                                                  
<head>                                                                  
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>  
<script type="text/javascript">                                         
    $(document).ready(function() { alert('hi'); });
</script>                                                               
</head>                                                                 
<body>                                                                  
</body>                                                                 
</html>