如何在用户在移动设备上输入日期后完成注册事件?

时间:2012-04-18 15:54:10

标签: javascript jquery-mobile

我在jQuery Mobile应用程序中使用默认时间输入设备,看起来像

enter image description here

如何在用户点击移动设备上的“完成”时注册javascript事件?我试过模糊无济于事。

1 个答案:

答案 0 :(得分:0)

The documentation表示要查找传递给元素的方法,然后可以检查close方法。

$('element').bind('datebox', function (e, passed) { 
  if ( passed.method === 'close' ) {
    alert('test');
  }
});

希望这有帮助。