嗨,我正在为 iOS 应用程序使用 JqueryMobile-1.3.0 和 Cordova-2.1.0。我正在使用 jqm datebox 进行日期选择。一切正常,但我想捕获日期框的关闭事件,因为我想在日期框已关闭。如何执行此操作?
问问题
999 次
1 回答
6
我给你做了一个工作示例:http: //jsfiddle.net/Gajotres/ktbcP/
这是您需要的代码:
$(document).on('pagebeforeshow', '#index', function(){
$('#mydate').on('datebox', function(e, p) {
if ( p.method === 'close' ) {
alert('DO SOMETHING');
}
});
});
其他回调和事件可以在这里找到:http: //dev.jtsage.com/jQM-DateBox2/demos/api/events.html
于 2013-03-11T11:37:51.563 回答