希望只是一個快速,我的Javascript知識是不好的想法,我不能工作這一個。使用默認隱藏在Javascript中的div
我有一些Javascript代碼,當點擊一個鏈接時會使聯繫擴展,但是目前默認情況下這個聯繫是可見的,我希望它被隱藏,直到鏈接被點擊,有什麼想法?
的的jsfiddle是:http://jsfiddle.net/p7Ebh/
JS
$("a.box-toggle").on('click', function() {
$('div.box-content').slideToggle(200).toggleClass('active');
});
HTML
<section class="box2">
<header class="box-head">
<div class="box-title fr"> <span class="box-icon"></span>
<h3 class="box-title-text">Title Title</h3>
</div> <a class="box-toggle fl active" href="#">A</a>
</header>
<div class="box-content active">
<img src="http://carryingthegun.files.wordpress.com/2012/09/personal_trollface_hd.png" alt="" width="200" height="200" />Content or collapsing data goes here</div>
</section>
CSS
.widget-toggle {
display: block;
overflow: hidden;
text-indent: -9999px;
width: 18px;
height: 9px;
margin-top: 15px;
margin-left: 13px;
background: url(../img/sidebar-arrows.png) no-repeat 0 -18px;
}
.widget-toggle.active {
background: url(../img/sidebar-arrows.png) no-repeat 0 0;
}
提前感謝!
爲什麼不使用CSS隱藏它? – Huangism