私はこれにかなり慣れていないので、ご容赦ください...チュートリアル@ http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html を使用して、ユーザーが日付を選択できるようにしていますカレンダー
しかし、私はそれを機能させることができないようです...
「jquery.datePicker.js & datePicker.css」は、ページの上部近くからダウンロードできます... http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html
- ビューのタグ内の「•jquery.datePicker.js」のコードをコピーします
- datePicker.css コードを css ファイルにコピーします
ビュー ページの上部に次を貼り付けます。
<!-- jQuery --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <!-- required plugins --> <script type="text/javascript" src="scripts/date.js"></script> <!--[if IE]><script type="text/javascript" src="scripts/jquery.bgiframe.js"></script><![endif]--> <!-- jquery.datePicker.js --> <script type="text/javascript" src="scripts/jquery.datePicker.js"></script>
<script>
これは機能しません... iv 最初のデモを実行して、タグ内の .js データを次のように置き換えてみました
$(function()
{
$('.date-pick').datePicker();
});
and then adding the following to .css
/* located in demo.css and creates a little calendar icon
* instead of a text link for "Choose date"
*/
a.dp-choose-date {
float: left;
width: 16px;
height: 16px;
padding: 0;
margin: 5px 3px 0;
display: block;
text-indent: -2000px;
overflow: hidden;
background: url(calendar.png) no-repeat;
}
a.dp-choose-date.dp-disabled {
background-position: 0 -20px;
cursor: default;
}
/* makes the input field shorter once the date picker code
* has run (to allow space for the calendar icon
*/
input.dp-applied {
width: 140px;
float: left;
}
誰かが私が間違っていることを教えてもらえますか?