我的datepicker代码在jsp中不起作用。以下是我的代码。请有人帮我解决这个问题。
<style>
</style>
</head>
<script src="http://code.jquery.com/jquery-1.10.2.js" type="text/javascript"></script>
<script src="js/onload.js" type="text/javascript"></script>
<!-- date picker -->
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$( ".date" ).datepicker();
} );
</script>
<body>
<div class="popup">
<label>From date </label><input type="date" name="fromdt" id="fromdt" class="date"/><br><br>
</div>