我想隐藏所有的类.Hide
,然后根据我点击的链接显示一个特定的 div。到目前为止我得到了这个,但是有没有更简单的方法?
到目前为止我的代码:(使用 JQuery)
$(".btn").click(function (){
$(".Hide").hide("fast");
});
$("#btn_one").click(function () {
$("#one").show("fast");
});
$("#btn_two").click(function () {
$("#two").show("fast");
});
$("#btn_three").click(function () {
$("#three").show("fast");
});
HTML:
<a href="#" id="btn_one" class="btn">one</a>
<a href="#" id="btn_two" class="btn">one</a>
<a href="#" id="btn_three" class="btn">one</a>
<div id="one" class="Hide">1</div>
<div id="two" class="Hide">2</div>
<div id="three" class="Hide">3</div>