我有一个在 Firefox 中运行良好但在 Internet Explorer(9) 中运行良好的日期选择器。谁能发现我做错了什么?
<head>
<script type="text/javascript" src='<spring:theme code="jquery.timepicker"/>'</script>
</head>
<script type="text/javascript">
$(function(){
$('#globalSearchStartDate').datetimepicker({
inline: true,
dateFormat: 'dd-mm-yy'
});
});
</script>
这是字段:
<td width=220 nowrap="nowrap"> Date From: <form:input path="globalSearchStartDate"/></td>
当页面加载时没有任何作用 - 没有其他函数被调用。如果我在 Firefox 中尝试它可以正常工作,或者如果我将上面的功能注释掉,那么其他一切都可以正常工作。有人可以告诉我这里有什么问题吗?!