jQuery:使用Bind& amp;单击方法

时间:2011-05-12 20:25:31

标签: javascript jquery

知道为什么这个点击事件不起作用? (我确定答案很明显 - 我只是没有看到它。)

<html>
    <head>
        <title></title>
        <script type="text/javascript" src="jquery.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                $('h1').bind('click', function(){
                    alert('clicked');
                });
            )};
        </script>
    </head>
    <body>
        <h1>This is a test.</h1>
    </body>
</html>
编辑:@Stefan:感谢你抓住这个错字。我需要记住下一次打开萤火虫。谢谢你建议jsfiddle.net。看起来像一个很酷的网站。

1 个答案:

答案 0 :(得分:6)

$(document).ready(function() {
                $('h1').bind('click', function(){
                    alert('clicked');
                });
            });//note this line

看起来像一个错字。打开firebug,你应该看到一个JS错误。

Here's a working example