HTML:
<div id="bottomContent" class="bottom_content" > <p>First Content</p> </div>
<div id="bottomContent2" class="bottom_content" > <p>second Content</p> </div>
<div id="bottomContent3" class="bottom_content" > <p>Third Content</p> </div>
JS:
$("div.one").click (function(){
$("#bottomContent2").hide();
$("#bottomContent3").hide();
$("#bottomContent").animate({width: "toggle"}, 1000);
});
$("div.two").click (function(){
$("#bottomContent").hide();
$("#bottomContent1").hide();
$("#bottomContent2").animate({width: "toggle"}, 1000);
});
$("div.three").click (function(){
$("#bottomContent").hide();
$("#bottomContent2").hide();
$("#bottomContent3").animate({width: "toggle"}, 1000);
});
我有以下jQuery代码,当单击每个div时,它将为其自己的相应div项设置动画并关闭可能已经打开的任何其他div但我相信有更好的方法来编写它并使其成为可能比我做的更紧凑。任何帮助将不胜感激。
答案 0 :(得分:5)
我总是通过在点击的元素上添加一些额外的元数据(使用data-*
属性)来关联它的内容来解决这个问题:
<div class="action" data-content="#bottomContent">
Click me for bottom content
</div>
<div class="action" data-content="#bottomContent1">
Click me for bottom content 1
</div>
<div class="action" data-content="#bottomContent2">
Click me for bottom content 2
</div>
请注意,我也给了所有三个div同一个类,让我可以将同一个动作与这三个相关联。
然后jQuery成为:
$("div.action").click (function(){
var $this = $(this);
$('div.action').not($this).each(function(){
var $other = $(this);
var otherTarget = $other.data('content');
$(otherTarget).hide();
});
var target = $this.data('content');
$(target).animate({width: "toggle"}, 1000);
});