切换div会自动关闭

时间:2015-09-18 08:58:55

标签: javascript jquery html ajax

我正在使用切换功能,似乎切换按钮无法自动关闭。它出现后直接关闭。我使用的代码非常简单:

    (function($) {
$(document).on("tap", ".Hide-1", function () {
    $(".div-1").hide("slow");

});
$(document).on("tap", ".Reply-open-button-1", function () {
    $("div.Reply-div-1").toggle("slow");

    $("div.Alert-div-1").hide("slow");
    $("div.Close-div-1").hide("slow");
});
$(document).on("tap", ".Alert-open-button-1", function () {
    $("div.Alert-div-1").toggle("slow");

    $("div.Reply-div-1").hide("slow");
    $("div.Close-div-1").hide("slow");
});
$(document).on("tap", ".Close-open-button-1", function () {
    $("div.Close-div-1").toggle("slow");

    $("div.Reply-div-1").hide("slow");
    $("div.Alert-div-1").hide("slow");
});

})(jQuery);

我也在使用'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'

当我点击其中任何一个时,你能看到任何可能的原因吗?

提前致谢N!

0 个答案:

没有答案