我有麻煩,包括我的HTML頁面中的jquery。我試圖顯示點擊按鈕的日曆,但日曆沒有顯示出來。出現以下錯誤:$(..)Datapicker不是一個函數。我在網上查了一下,有人說這是因爲包括多個。但是我非常確定,我只包含jquery一次,因爲當我刪除Jquery包含時,它說我不包含它。這裏是頭:麻煩,包括HTML中的jquery庫
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-animate.js"></script>
<script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.0.0.js"></script>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script>
$(function() {
$("#datepicker").datepicker();
});
</script>
<script src="https://use.fontawesome.com/6cd7c64e2b.js"></script>
<link rel="stylesheet" type="text/css" href="/static/app/css/control/style.css" />
<link rel="stylesheet" type="text/css" href="/static/app/css/control/ir-button.css" />
<link rel="stylesheet" type="text/css" href="/static/app/css/recorder/style.css"/>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script type="text/javascript" src="/static/app/js/recorder/timer.js"></script>
注意,JS腳本是在頭部,因爲我想測試它,因爲它不是在一個外部文件的工作!
在此先感謝!
你錯過了加載jQuery庫,並確保其在jQuery UI的前頂部 – Satpal
負荷的jQuery ..... –
您還沒有包括jQuery的 - 你已經包括jQuery的-ui - 你還需要jquery *之前* jquery-ui –