所以,我使用的是非常简单的Datepicker。它在Firefox和Chrome中运行良好。但在IE中根本没有。我对jQuery相对较新,无法解决这个问题。 这是我的代码。我把它剥了下来,以便这个页面上只有日期选择器,但仍然无法正常工作。
<!DOCTYPE html>
<html>
<head>
<title>Testing</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
$('#txtDate').datepicker({
showAnim: 'slide',
dateFormat: 'mm-dd-yy',
});
});
</script>
<style>
body
{
font-family:Arial;
font-size : 10pt;
padding:5px;
}
</style>
</head>
<body>
<input type='text' id='txtDate'>
</body>
</html>
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
&#13;
答案 0 :(得分:1)
显然,这是一个服务器问题。我使用了Mark建议的链接中描述的方法。这在开发服务器上不起作用,所以为了确保,我在开发服务器上尝试了它,它确实有效。谢谢Mark。