問題很簡單。我已經正確包含了所有內容,但日期選擇器不會顯示。我在我的HTML頭標記加入腳本:JQuery UI - 無法讓datepicker工作
<script type="text/javascript" src="<?php echo site_url('js/jquery-1.10.2.min.js'); ?>"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>
<link rel="stylesheet" href="<?php echo site_url('css/jquery.ui.core.css'); ?>">
<link rel="stylesheet" href="<?php echo site_url('css/jquery.ui.datepicker.css'); ?>">
於日期選擇器代碼...
<input type="text" name="date" id="date">
<script type="text/javascript">
$(document).ready(function() {
$("#date").datepicker({ dateFormat: "yy-m-d" });
});
</script>
就是這樣。沒有日期選擇器或該文本輸入上的任何內容。也沒有錯誤... :(
你有沒有加載的jQuery UI的CSS文件 – undefined
沒有...這是必須的嗎? – user568021
它用於UI庫創建的樣式元素,沒有它,你應該自己設計元素的樣式,瘋狂。 – undefined