除了标题的data-role="collapsible"
事件之外,有没有其他人知道如何捕获扩展或折叠标有onclick
的组件的事件?
答案 0 :(得分:58)
collapsible
块有自定义事件。您可以绑定到expand
和collapse
事件:
$('#my-collapsible').bind('expand', function () {
alert('Expanded');
}).bind('collapse', function () {
alert('Collapsed');
});
这是一个jsfiddle:http://jsfiddle.net/6txWy/
答案 1 :(得分:13)
在jQuery Mobile 1.4中,有 collapsiblecollapse 和 collapsibleexpand 事件。 https://api.jquerymobile.com/collapsible/#event-collapse
$( ".selector" ).on( "collapsiblecollapse", function( event, ui ) {} );
答案 2 :(得分:3)
您可以绑定任何所需的事件,例如:
演示:
JS
$("div:jqmData(role='collapsible')").each(function(){
bindEventTouch($(this));
});
function bindEventTouch(element) {
element.bind('tap', function(event, ui) {
if(element.hasClass('ui-collapsible-collapsed')) {
alert(element.attr('id')+' is closed');
} else {
alert(element.attr('id')+' is open');
}
});
}
HTML
<div data-role="page" id="home">
<div data-role="content">
<div data-role="collapsible" id="number1">
<h3>Header #1</h3>
<p>I'm Header #1</p>
</div>
<br />
<div data-role="collapsible" data-collapsed="false" id="number2">
<h3>Header #2</h3>
<p>I'm Header #2</p>
</div>
</div>
</div>
答案 3 :(得分:0)
我认为还有另一种方法可以做到这一点。我不相信你可以在这种情况下使用animationComplete
,如下所述:
http://jquerymobile.com/test/docs/api/events.html
也许你可以对特定元素使用某些类更改,这实际上并不比绑定标题的onclick事件更好。
答案 4 :(得分:0)
您可以尝试jQuery mobile点击事件。我没有亲自使用它,但我听说它类似于mousedown
事件处理程序。如果你提供一些关于为什么onclick无效的详细信息,我们可以帮助你多一点。