当我按下一个按钮而不是那个div就像在div下面那样,当我解雇另一个显示隐藏的div时,可能'home'div消失了,我怎么做?
这是Javascript:
jQuery(document).ready(function () {
jQuery('#hideshow2').live('click', function (event) {
jQuery('#content2').toggle('show');
});
});
答案 0 :(得分:1)
jQuery(document).ready(function () {
jQuery('#homebtn').click(function (event) {
jQuery('#one').toggle();
jQuery('#two').toggle();
});
});