在jQuery中未触发按钮单击事件?

时间:2013-11-30 13:17:21

标签: javascript jquery

您能否告诉我为什么按钮点击事件不会在jsfiddle中触发?

我想停止传播并防止默认,但我被卡住了。

$(document).ready(function() {
    $("#btn").click(function(){
        alert("button");
    }); 
});

1 个答案:

答案 0 :(得分:2)

试试这个

<!DOCTYPE html>
<html>
    <head>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
        </script>
        <script>
            $(document).ready(function() {
                $("#btn").click(function(){
                    alert("button");
                }); 
            });
        </script>
    </head>
    <body>
       <button id="btn">test</button>
    </body>
</html>