关闭当前div并打开另一个

时间:2015-07-01 13:46:16

标签: javascript

我觉得我已经好几个小时了。 我不能告诉我的剧本当我按下按钮必须关闭显示屏然后打开新的显示器,有人帮助我吗?

$(document).ready(function() {
    $('.testoprodotto').addClass("hidden");

    $('.testoprodotto').on('click', function() {
        if ($(this).hasClass("hidden")) {
            $(this).removeClass("hidden").addClass("visible"); // Dropdown
            $(this).find('.more').hide().siblings('.less').show(); // Button
        } else {
            $(this).removeClass("visible").addClass("hidden"); // Dropdown
            $(this).find('.more').show().siblings('.less').hide(); // Button
        }
    });
});

http://jsfiddle.net/divieto/uvz2ngsk/

1 个答案:

答案 0 :(得分:0)

这样做的一种方法是点击可见的点击。

$('.testoprodotto').on('click', function() {
    if ($(this).hasClass("hidden")) {
        $('.testoprodotto.visible').click();
        $(this).removeClass("hidden").addClass("visible");  
        /* rest of your code */