简单的jQuery代码在VS 2010中不起作用

时间:2016-11-25 17:39:01

标签: jquery html

我在VS 2010中有这个代码:

<!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>
    <title></title>
<script src="Scripts/jquery-3.1.1.min.js" type="text/javascript"/>
<script type="text/javascript">
    $(document).ready(function () {
        $("button").click(function () {
                $("p").hide('1000');
            });
        });        
</script>
</head>
<body style="width: 1007px; margin-left: 144px"> 
    <button value="button" style="width: 86px; height: 29px;">Click me !</button>
    <p style="background-color: #77003C; height: 55px;"/>    
</body>
</html>

但它在任何浏览器都不起作用,如果我用CDN替换jQuery文件,我会收到MicrosoftJScript错误:
object doesn't support this property or method

这有什么问题?

&#13;
&#13;
$(document).ready(function() {
  $("button").click(function() {
    $("p").hide('1000');
  });
});
&#13;
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<button value="button" style="width: 86px; height: 29px;">Click me !</button>
<p style="background-color: #77003C; height: 55px;" />
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

我无法相信......我刚刚修改了

<script src="Scripts/jquery-3.1.1.min.js" type="text/javascript"/>

为:

<script src="Scripts/jquery-3.1.1.min.js" type="text/javascript">**</script>**

那么它运行正常!。这是VS 2010中的一个错误吗?