单击Webbrowser中的Button,只有一个类

时间:2014-09-20 18:02:48

标签: javascript html

所以我看到很多点击按钮,但我还没有看到按班级点击。有人可以帮我这里是HTML按钮代码

<a class="single_like_button btn3-wrap" onclick="openFbLWin_2273468();
<span>&nbsp;</span><div class="btn3">Like</div></a>

请帮帮我真的需要这个。谢谢:D

1 个答案:

答案 0 :(得分:-1)

您可以使用jQuery。将jQuery引用添加到您的HTML head之后:

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>

...然后您可以在head <script>区块中执行以下操作:

<script language="text/javascript">
    $('.single_like_button').click(function(){
        //you can use $(this) to reference the calling object, <a> in this case 
        //$(this).css('color','red'); 
        openFbLWin_2273468();
    });
</script>