JQuery-Mobile collapsible expand/collapse event

前端 未结 5 922
离开以前
离开以前 2020-12-01 15:53

Does anyone know any other way to capture the event of expanding or collapsing a component marked with data-role=\"collapsible\" apart from the onclick

5条回答
  •  再見小時候
    2020-12-01 16:54

    In jQuery Mobile 1.4 there are the collapsiblecollapse and collapsibleexpand events. https://api.jquerymobile.com/collapsible/#event-collapse

    $( ".selector" ).on( "collapsiblecollapse", function( event, ui ) {} );
    

提交回复
热议问题