0

这是我的代码:

<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

4

1 回答 1

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>
于 2012-08-05T13:02:27.243 回答