以下jQuery日期选择器正在开发包括Safari在内的所有浏览器,但不适用于iPad。
<div class="tab3_4_bar1" id="Bar3">
<div class="Bar_header">Start Date</div>
<div id="Bar3Content" class="BarContent"></div>
<input id="StartDate" class="myDate" />
</div>
JS:
$(function() {
$("#StartDate").datepicker({
showButtonPanel: true,
showOn: 'focus',
buttonImage: "../imgs/img.png",
buttonImageOnly: true
});
});
CSS:
#StartDate{
width: 70px;
}
有什么快速解决方法吗?
答案 0 :(得分:0)
使用input type =“text”而不是“date”。
<div>
<form action="${app}/fixture" method="get">
<table>
<tr>
<td><input type="text" name="matchdate" id="matchdate" /></td>
</tr>
<tr>
<td><input type="submit" value="Get Fixtures" /></td>
</tr>
</table>
</form>
</div>
<script>
$(function() {
$("#matchdate").datetimepicker({
format : "d-m-Y",
timepicker : false,
inline : true
});
});
</script>