如何在使用Jquery隐藏按钮后显示警告消息onclick

时间:2016-12-14 13:48:54

标签: jquery

如何在>隐藏单击的相同按钮后单击显示警告消息?

这是我的代码:

$('.inner').click(function(){
    $(this).fadeOut();
    alert('what the heck');
});

内部将是按钮的类

1 个答案:

答案 0 :(得分:1)

$("#myButton").click(function(e) {
    $(this).fadeOut('fast', function() {
        alert("My message");
    });
});