林相當新的這個jQuery選擇器數據,請包涵...... 我使用教程@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>
這不工作... IV試着做第一個演示,並與
$(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;
}
replacting我
<script>
標籤內的數據名爲.js
有人可以告訴我我做錯了什麼嗎?
感謝您的回覆伊姆蘭,我本來有datepicker工作,我用jquery曆法。我試圖讓日曆讓我選擇多個日期似乎是問題,你的演示只允許用戶選擇一個日期?請告知 – John
您需要根據此更改代碼,您可以選擇多個日期。檢查演示。 HTTP://www.kelvinluck。com/assets/jquery/datePicker/v2/demo/datePickerMultiple.html –
嗨伊姆蘭,得到它與下面的代碼發佈, 然後添加在您提供的鏈接中的代碼,這使我可以選擇儘可能多的日期想要,但我不能選擇一個日期....你知道這是爲什麼,或者也許可以提供如何解決這個問題的信息? – John