我正在使用jQueryMobile dateBox的第1版(http://dev.jtsage.com/jQM-DateBox1/)作为我的跨平台应用。它是一个很好的插件,有很多选项,在浏览器中打开它可以正常工作。
但是,在移动设备上,当打开日期框时,打开该框的同一个点击会在显示日期框后再次触发。因此它会打开,然后立即选择恰好显示在点击位置下方的日期。
我做错了什么?
这些是我在日期框中设置的默认值:
jQuery.extend(jQuery.mobile.datebox.prototype.options, {
'mode': 'calbox',
'useDialogForceTrue':true,
'useDialogForceFalse':false,
'useInline':false,
'centerWindow':true,
'useClearButton': true,
'noButtonFocusMode': true,
'fullScreen': true,
'transition':'none',
'themeDateToday':'b',
});