我如何让divs相互重叠?

时间:2013-08-07 11:42:05

标签: javascript jquery html

当我按下一个按钮而不是那个div就像在div下面那样,当我解雇另一个显示隐藏的div时,可能'home'div消失了,我怎么做?

这是Javascript:

jQuery(document).ready(function () {
    jQuery('#hideshow2').live('click', function (event) {
        jQuery('#content2').toggle('show');
    });
});

1 个答案:

答案 0 :(得分:1)

很容易.....看到这个小提琴。 http://jsfiddle.net/RCfVX/

jQuery(document).ready(function () {
    jQuery('#homebtn').click(function (event) {
        jQuery('#one').toggle();
        jQuery('#two').toggle();
    });
});