Jquery-如何识别单击按钮的类

时间:2012-07-15 15:36:48

标签: javascript jquery html

现在,我有

$(document).ready(function(){
    $(".follow-button").click(function(){
        alert("asdf");
    }
});      

<button class="follow-button" align="right" align="center">
        Follow 
 </button>

但是当我点击按钮时,没有任何反应。我做错了什么?

4 个答案:

答案 0 :(得分:1)

$(document).ready(function(){
    $(".follow-button").click(function(){
        alert("asdf");
    });  // <----here 
});      

答案 1 :(得分:1)

您错过了click后的右括号和分号:

$(document).ready(function(){
    $(".follow-button").click(function(){
        alert("asdf");
    });
});
     ^----- there

答案 2 :(得分:1)

看起来你需要添加);到函数的末尾

$(".follow-button").click(function(){
        alert("asdf");
    });

答案 3 :(得分:1)

其他提交者回答了您的问题,但我想我会发表评论。当语法错误时,JavaScript会产生非常意想不到的后果,很难弄清楚究竟出了什么问题。我建议使用JSLint(或JSHint)来捕获这些愚蠢的错误。 (http://www.jshint.com)