我正在玩Thornton的时间选择器,虽然它在桌面或笔记本电脑上很棒,但发现iphone上的界面几乎不可能使用。有没有人建议如何使其对移动设备更加用户友好?这是一个小提琴timepicker
<body>
<form action="iphone_out.php" method="POST">
<input name="resdate5" type="text" class="time ui-timepicker-input timedrop">
</form>
</body>
$(document).ready(function() {
$(".timedrop").click(function() {
$(this).timepicker({
'minTime': '9:00 am',
'maxTime': '9:00 pm',
'timeFormat': 'h:i A',
'disableTextInput': true,
'disableTouchKeyboard':true,
'stopScrollPropagation':true
});
});
});
答案 0 :(得分:0)
我从未使用过该脚本,但是您在单击事件处理程序中实例化它,这看起来并不正确。试试这样:
$(document).ready(function() {
$('.timedrop').timepicker({
'minTime': '9:00 am',
'maxTime': '9:00 pm',
'timeFormat': 'h:i A',
'disableTextInput': true,
'disableTouchKeyboard':true,
'stopScrollPropagation':true
});
});