我有一个在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中尝试它工作正常或如果我评论上面的功能,那么其他一切正常。有人可以告诉我这里的问题是什么吗?!
答案 0 :(得分:1)
嘿,你头部的脚本标签中缺少'>'
。
除IE外,所有浏览器都是智能的。但IE一直是开发人员的头疼问题。