microsoft jscript运行时错误对象不支持此属性或方法jquery

时间:2011-10-02 13:41:24

标签: jquery asp.net

我使用asp.net vs 2008.I我正在尝试jquery。我收到了这个错误 “microsoft jscript运行时错误对象不支持此属性或方法jquery”
任何帮助表示赞赏。

这是我正在使用的代码。

 <title></title>
    <script type="text/javascript" src="jquery-1.6.4.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            ("button").click(function() {
                $("p").hide();
            });
        });  </script>
</head>
<body>
    <form id="form1" runat="server">
   <h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
    </form>
</body>

1 个答案:

答案 0 :(得分:1)

你错过了我认为

        $("button").click(function() {
            $("p").hide();
        });