jquery の日付ピッカーを自分のページで動作させることができません。誰かが詳細を知りたい場合は、コードコールに関するフォーラム投稿があります。リンクはhttp://forum.codecall.net/topic/70462-copy-and-paste-date-picker-javascipt/です。このページに関連付けられているコードは次のとおりです。テキスト フィールドをクリックしても、日付ピッカーが表示されません。なんで?誰でも問題を見ることができますか?
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.21.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.21.custom.min.js"></script>
$(function() {
$( "#start_date" ).datepicker();
});
$(function() {
$( "#end_date" ).datepicker();
});
<div id="dateField">
<p>
Start Date: <input type="TEXT"
name="start_date" id="startDate"
value="" />
</p>
<p>
End Date: <input type="TEXT"
name="end_date" id="endDate"
value="" />
</p>
<small>Dates Should be in the format DD/MM/YYYY</small>
</p>
</div>