我已嘗試所有與我的查詢有關的問題,但無法找到正確的解決方案。現在我通過使用slideToggle
找到了我的解決方案。 現在我想讓我的所有div在頁面加載時展開。如何在頁面加載中擴展我的Div?
小提琴演示Here
片段的例子下面
$('.expand').click(function(){
target_num = $(this).attr('id').split('-')[1];
content_id = '#expandable-'.concat(target_num);
$(content_id).slideToggle('fast');
});
.expand {
font-weight: bold;
font-style: italic;
font-size: 12px;
cursor: pointer;
}
.expandable {
display:none;
}
div {
margin: 10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<p class="expand" id="expand-1">more 1...</p>
</div>
<div class="expandable" id="expandable-1">
<p>1. This is the content that was hidden before, but now is... Well, visible!"</p>
</div>
<div>
<p class="expand" id="expand-2">more 2...</p>
</div>
<div class="expandable" id="expandable-2">
<p>2. This is the content that was hidden before, but now is... Well, visible!"</p>
</div>
您想展開負載上的第一個div嗎? –
全部div加載首頁div –
你在混淆回答需要全部div擴展還是隻有firstone? –