jQuery Mobile 可折叠展开事件
jQuery Mobile是一种基于 Web 的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。
在本文中,我们将使用 jQuery Mobile 的Collapsible 展开事件来在展开可折叠小部件时触发。
句法:
使用指定的展开回调初始化可折叠:
$( ".selector" ).collapsible({
expand: function( event, ui ) {}
});
将事件侦听器绑定到 collapsibleexpand 事件:
$( ".selector" ).on( "collapsibleexpand",
function( event, ui ) {} );
参数:它包含上面提到的两个参数,下面讨论:
- 事件:它接受事件类型值。
- ui:它接受对象类型值。此值为空,因为它用于与其他事件保持一致。
CDN 链接:首先,添加项目所需的 jQuery Mobile 脚本。
示例:此示例描述了 jQuery Mobile 可折叠展开事件。
HTML
GeeksforGeeks
jQuery Mobile Collapsible expand Event
GeeksforGeeks
GeeksforGeeks is a computer science portal
for geeks. It contains well written, well
thought and well explained computer science
and programming articles, quizzes etc.
输出:
参考: https://api.jquerymobile.com/collapsible/#event-expand