0

我正在尝试在移动视图中应用日期选择器和时间选择器控件。我已经尝试了很多,但一切都顺理成章。Atlast 我希望是堆栈溢出。
如果有人在移动视图中应用了日期选择器或时间选择器,请帮助我,然后请告诉我应用它的程序。非常感谢我已经尝试过这里给出的一种方法

http://jquerymobile.com/demos/1.0a4.1/experiments/ui-datepicker/

我正在使用最新的Jquery.mobile.1.3。我已经在脚本和 css 部分写了这个

<link rel="stylesheet" href="jquery.ui.datepicker.mobile.css" /> 
<script src="jQuery.ui.datepicker.js"></script>
<script src="jquery.ui.datepicker.mobile.js"></script>

并以与上述类似的方式使用控制,但它从未对我有用

<input type="date" name="date" id="date" value=""  />
4

1 回答 1

0

你甚至读过http://jquerymobile.com/demos/1.0a4.1/experiments/ui-datepicker吗?

你需要四样东西:

1)html中的标签

<label for="date">Date Input:</label>

2)html中的输入字段

<input type="date" name="date" id="date" value=""  />

3)在html中包含js文件

<script src="jQuery.ui.datepicker.js"></script>
<script src="jquery.ui.datepicker.mobile.js"></script>

4) 脚本中标准日期行为的改变

$( document ).bind( "mobileinit", function(){
    $.mobile.page.prototype.options.degradeInputs.date = true;
});

关于zY

于 2013-07-25T11:49:29.107 回答