如何使用jquery停止运行函数?

时间:2018-06-09 13:20:27

标签: javascript jquery

这是我的代码

more_content('ajax/explore-more-pictures.php', '.Picture');

$("#RoomX, #CategoriesX, #UsersX, #PicturesX").click(function(e){

    $("#Tabx").text($(this).text());

    var tabx = $("#Tabx").text();

    if(tabx == 'Pictures'){
        more_content('ajax/explore-more-pictures.php', '.Picture');
    }else if(tabx == 'Users'){
        more_content('ajax/explore-more-users.php', '.Channel');
    }else if(tabx == 'Categories'){
        more_content('ajax/explore-more-categories.php', '.Channel');
    }else if(tabx == 'Rooms'){
        more_content('ajax/explore-more-rooms.php', '.Channel');
    }
});

我希望第一个函数成为默认函数,但如果我点击任何ID,我想停止运行该函数。

重复的答案没有回答我的问题。我不想停止点击功能的运行,而是停止运行more_content功能。

0 个答案:

没有答案