0

当我按下一个按钮而不是那个 div 就像放在 div 下一样时,我如何做到这一点,当我触发另一个显示隐藏的 div 时,可能“home”的 div 会消失?

这是Javascript:

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

1 回答 1

1

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

jQuery(document).ready(function () {
    jQuery('#homebtn').click(function (event) {
        jQuery('#one').toggle();
        jQuery('#two').toggle();
    });
});
于 2013-08-07T13:51:03.597 回答