JQueryMobile datepicker的日期更改事件

时间:2013-07-30 13:43:05

标签: events jquery-mobile datebox

我正在使用Datebox for JQueryMobile,但我找不到任何方法来挂钩日期更改事件(可能缺少明显的东西!)我正在使用日历内联,所以没有文本字段可用这有所不同。

当我在日历中选择日期时,有没有办法触发事件? 谢谢, 贝基

1 个答案:

答案 0 :(得分:4)

解决方案

此示例是基于DateBox2制作的,请告诉我您是否使用旧版本。

工作示例:http://jsfiddle.net/Gajotres/ktbcP/15/

HTML:

<!DOCTYPE html>
<html>
<head>
    <title>jQM Complex Demo</title>
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <link type="text/css" href="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.min.css" rel="stylesheet" />       
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>        
    <script type="text/javascript" src="http://dev.jtsage.com/jquery.mousewheel.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/<jqm-date></jqm-date>box.core.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.calbox.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.datebox.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.flipbox.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.durationbox.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.slidebox.min.js"></script>
    <script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/i18n/jquery.mobile.datebox.i18n.en_US.utf8.js"></script>      
</head>
<body>
    <div data-role="page" id="index">
        <div data-theme="a" data-role="header">
            <h3>
                First Page
            </h3>
            <a href="#second" class="ui-btn-right">Next</a>
        </div>

        <div data-role="content">
            <label for="mydate">Some Date</label>
            <input name="mydate" id="mydate" type="date" data-role="datebox" data-options='{"mode": "datebox", "useNewStyle":true}'/>
        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div>   
</body>
</html>   

使用Javascript:

$(document).on('pageinit', '#index', function(){ 
    $('#mydate').bind('datebox', function(e, p) {
        if ( p.method === 'set' ) {
            e.stopImmediatePropagation()
            alert('Changed');
        }
    });
});

解释

DateBox2有几个回调函数,set就是其中之一。您需要做的是将日期框事件绑定到输入框,如下所示:

$('#mydate').bind('datebox', function(e, p) {
    if ( p.method === 'set' ) {
        e.stopImmediatePropagation()
        alert('Changed');
    }
});

只需检查一个合适的方法。他们的official documentation拥有完整的方法列表。

不幸的是,检测到手动日期更改的事件不存在,如果这是您需要的。