collapsibe divのアイコンクリックでのみ展開/折りたたみを実装する方法を知っている人はいますか?
質問する
1851 次
2 に答える
1
jQM の折りたたみ可能なコンテンツを試してください。必要なのはdata-role="collapsible"
、div に追加することだけです。
<div data-role="collapsible">
<h3>I'm a header</h3>
<p>
I'm the collapsible content.
By default I'm closed, but you can click the header to open me.
</p>
</div>
于 2012-05-14T15:26:40.710 に答える
1
私は次の方法を見つけました:
...
collapsibleHeading.find(".ui-icon").bind("click", function (event) {
var type = collapsibleHeading.is(".ui-collapsible-heading-collapsed") ?
"expand" : "collapse";
collapsible.trigger(type);
event.preventDefault();
});
詳細が必要な場合は、お知らせください。
于 2012-05-15T10:53:25.630 に答える