我试图对datebox进行扩展,我首先需要选择日期,然后点击“选择日期”。
所有工作,差不多。单击“选择日期”按钮时,单击模态窗口后面的内容,在我的情况下,它是一个搜索按钮。
任何人都知道为什么?
if (o.useSelectDateButton) {
$('<a href="#">Välj datum</a>')
.appendTo(hRow).buttonMarkup({ theme: o.theme, icon: 'check', modal: true, iconpos: 'left', corners: true, shadow: true })
.on(o.clickEvent, function(e) {
if ($(this).jqmData('enabled')) {
w.theDate.set(2, 1).set(1, $(this).jqmData('month')).set(2, $(this).jqmData('date'));
w.d.input.trigger('datebox', { 'method': 'set', 'value': w._formatter(w.__fmt(), w.theDate), 'date': w.theDate });
}
if (w.theDate == new Date()) {
w.theDate.set(2, 1).set(1, $(this).jqmData('month')).set(2, $(this).jqmData('date'));
w.d.input.trigger('datebox', { 'method': 'set', 'value': w._formatter(w.__fmt(), w.theDate), 'date': w.theDate });
}
w.d.input.trigger('datebox', { 'method': 'close' });
});
}
我这样称呼日期框:
<input name="datepicker" id="datepicker" type="date" data-role="datebox" data-options='{"mode": "calbox", "calShowWeek": true, "overrideCalStartDay": 1, "useModal": true, "useAltIcon": true, "afterToday": true, "useFocus": true }'>
添加了JsFiddle Click for fiddle
问题是我无法在浏览器中重新创建问题,它只发生在移动设备中。
答案 0 :(得分:0)
你可以摆弄这个吗?你使用哪个jquery库?
另一种选择/替代方案:
看看this
它是一个非常简单的datetimepicker,jquery库和它的工作非常简单。
头标记:
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
正文标记:
<p>Date: <input type="text" id="datepicker" /></p>