回答
嗨Refre酒店這個鏈接http://jsfiddle.net/KqFRu/7/
<div>
<fieldset class="majorpoints">
<legend class="majorpointslegend">Expand</legend>
<div class="hiders" style="display:none" >
<ul>
<li>cccc</li>
<li></li>
</ul>
</div>
</div><div>
<fieldset class="majorpoints">
<legend class="majorpointslegend">Expand</legend>
<div class="hiders" style="display:none" >
<ul>
<li>cccc</li>
<li></li>
</ul>
</div>
</div><div>
<fieldset class="majorpoints">
<legend class="majorpointslegend">Expand</legend>
<div class="hiders" style="display:none" >
<ul>
<li>cccc</li>
<li></li>
</ul>
</div>
</div><div>
<fieldset class="majorpoints">
<legend class="majorpointslegend">Expand</legend>
<div class="hiders" style="display:none" >
<ul>
<li>cccc</li>
<li></li>
</ul>
</div>
</div>
和JS
$('.majorpoints').click(function(){
$(this).find('.hiders').toggle();
});
謝謝你的幫助gayathri .. –
如果它工作正常,你可以這樣回答,以便它會對別人有所幫助 –
最好的解決方案是不使用JavaScript的。看看這裏:https://jsfiddle.net/zx3du1p6/1/
input[type="checkbox"] {
display: none;
&:checked ~ .list-item {
display: block;
}
}
.list-item {
display: none;
}
這使用jQuery的:https://jsfiddle.net/zx3du1p6/
$('button').click(function() {
$('li').toggleClass('open')
})
如果你絕對必須使用jQuery Mobile的,你可以使用可壓縮集:https://jsfiddle.net/zx3du1p6/2/
<div data-role="collapsibleset" data-theme="a" data-content-theme="a">
<div data-role="collapsible">
<h3>Load more</h3>
<p>List goes here</p>
</div>
</div>
我想要這個使用jquery手機:( –
添加jquery移動到答案 –
- 1. 從外部鏈接展開jquery摺疊
- 2. 使用jquery mobile定位鏈接
- 3. 使用jQuery中的鏈接展開/摺疊div
- 4. 展開和摺疊子行上的鏈接的點擊表
- 5. 用JQuery更新JQuery Mobile鏈接/ href
- 6. 添加鏈接可摺疊列表的頭在jQuery Mobile的
- 7. JQuery Mobile - ListViewContent內的鏈接
- 8. jQuery Mobile鏈接問題
- 9. JQuery Mobile與MVC的鏈接
- 10. jQuery Mobile鏈接錯誤?
- 11. JQuery Mobile打開視頻鏈接頁面
- 12. 點擊jQuery Mobile鏈接/點擊時出錯
- 13. jQuery Mobile - 鏈接不起作用
- 14. JQuery-Mobile在圖標上單擊展開/摺疊?
- 15. 點擊使用jQuery後禁用鏈接
- 16. 使用jQuery擴展鏈接
- 17. 深度鏈接jQuery-mobile 1.3和jqm.page.params.js
- 18. Jquery UI手風琴 - 摺疊和可點擊的鏈接
- 19. 如何直接在jQuery Mobile中使用div id訪問鏈接?
- 20. jQuery鏈接展開
- 21. 在Express js和JQuery mobile中使用Ajax進行頁面鏈接
- 22. jquery mobile用另一個超鏈接替換超鏈接
- 23. 打開鏈接使用jQuery
- 24. jquery點擊鏈接?
- 25. jquery點擊鏈接
- 26. jQuery Mobile可摺疊菜單
- 27. JQuery Mobile可摺疊內容
- 28. jQuery Mobile可摺疊菜單
- 29. jQuery Mobile的 - 「jquerymobile」顯示鏈接被點擊
- 30. 點擊動態鏈接時填充jQuery Mobile頁面內容
你有沒有嘗試一下嗎?你能分享你的代碼嗎? –
嗨馬丁,我還沒有開始編碼。只是有一個要求。基本上,當我點擊「更多」鏈接時,列表應該展開,反之亦然。 –
在詢問之前,您應該總是先嚐試編碼。但結帳我的答案。你只能用CSS來做到這一點。最好的做法是儘可能避免使用JavaScript。 –