jQuery UI 对话框创建事件
创建对话框时会触发 jQuery UI Create 事件。
在此处了解有关 jQuery 选择器和事件的更多信息。
句法:
$(".selector").dialog (
create: function( event, ui ) {
console.log('created')
},
方法:
- 首先,添加项目所需的 jQuery Mobile 脚本。
- “打开对话框”按钮将触发单击函数(#gfg),该功能将在对话框 (#gfg2) 中进一步打开
- create( event, ui ) : 创建对话框时触发。此创建附加了回调函数,该函数在创建对话框后触发。
- 事件:类型 -> 事件
- ui : 类型 -> 对象
- 回调函数:函数(事件,ui){console.log('created')}
示例 1:
HTML
输出: