2

有没有办法将时间选择器和日期选择器结合在一个文本中记录开始日期和时间以及结束日期和时间,所以我想知道你是否可以将它们结合起来。一个输入文本有一个日期选择器和一个时间选择器

$(document).on('pageinit', '#index', function(){       
    $( "#datepicker" ).datepicker();
});


<!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/ui/1.10.3/themes/smoothness/jquery-ui.css" />        
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
        <script src="http://code.jquery.com/jquery-migrate-1.1.1.js"></script>        
        <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>          
        <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.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">
                <p>Date: <input type="text" id="datepicker" /></p>                
            </div>

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

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

更新:

发现这个http://jsfiddle.net/bk7fK/1/看到它很好但我不能让它运行..知道为什么我不能让这个小提琴运行我想我错过了一个 js 但我不知道是什么

4

1 回答 1

0

我在您的代码中没有看到时间选择器。

仅供参考: 默认的 jQuery 日期选择器不允许时间选择器,因为你需要另一个插件和 jQuery。

检查这个jQuery Timepicker 插件

这是一个演示

于 2013-10-23T06:07:34.190 回答