0

我正在尝试在单击 .icon-menu 时执行一个功能,但在 chrome 和 IE 中遇到了该功能未激活的问题。在 Firefox 中运行良好。我尝试了很多变化,但没有运气。

    <a href="#" class="icon"><span class="icon-menu"></span></a> 

$(document).ready(function() {

    $('a .icon-menu').click(function(){
       alert('yeah');
});

有人可以帮忙吗?

4

2 回答 2

1

You forgot to finish your syntax

$('a .icon-menu').click(function(){
   alert('yeah');
}); //   <-- notice the parenthesis and semi colon
于 2013-01-15T16:58:14.493 回答
0

try this :

$(document).ready(function () {
    $('a .icon-menu').on('click',function(){
        alert(' yeah ');
    });
});
于 2013-01-15T16:57:53.217 回答