我想使用可排序的jQuery UI插件1.8.16版來製作一個有序的項目列表click-and-draggable。但是,我不斷收到錯誤$("#ol-id ol").sortable is not a function
,'ol-id'是列表的id。我的代碼如下:jQuery可排序不是函數
//Sorting stuff
if($("#li-id li").size()>1) {
$("#ol-id ol").sortable({
revert: true,
axis: 'y',
containment: 'parent',
cursor: 'move',
handle: 'div.link_div',
smooth: false,
opacity: 0.7,
tolerance: 'pointer',
start: function(){
$("#ol-id").removeClass("bottom_dragged");
},
update: function(){
$("#ol-id ol").sortable({disabled : true});
$("#saving_indicator").html("saving...")
$("#saving_indicator").show();
//do other stuff...
}
})
}
奇怪的是,錯誤在Firebug顯示爲是與update: function(){
行了。
我已經驗證過,在加載頁面和加載jQuery UI庫之後調用此函數。我在頭文件中包括jquery-1.6.2.min.js和jquery-ui-1.8.16.custom.min.js。而且,我已經驗證了所有的id名稱都是正確的,並且與他們的HTML相對應。
因此,如果它不是這個缺少資源相關的東西,是什麼導致了這個問題?
編輯:這裏是我的HTML頭:
<link href="/_css/styles.css?mod=1317745564" type="text/css" rel="stylesheet">
<link href="/_javascript/qtip/jquery.qtip.min.css?mod=1315947301" type="text/css" rel="stylesheet">
<script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js">
<script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">
<link rel="stylesheet" type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/start/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/le-frog/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js" type="text/javascript">
<script src="/_javascript/sets.js?mod=1320080042" type="text/javascript"> //Sorting stuff code is here
<script type="text/javascript" src="http://dev.selfcheck.vudat.msu.edu/_javascript/jquery.jsonp.js">
<script type="text/javascript" src="http://dev.selfcheck.vudat.msu.edu/_javascript/jquery.form.js">
<script type="text/javascript" src="http://dev.selfcheck.vudat.msu.edu/_javascript/qtip/jquery.qtip.min.js">
<link href="/_css/ui/ui.core.css?mod=1315947279" type="text/css" rel="stylesheet">
<link href="/_css/ui/ui.theme.css?mod=1315947280" type="text/css" rel="stylesheet">
你在jQuery之後加入了jQuery UI嗎? –
嘗試'$(this).sortable({disabled:true});''update''內部,只是爲了檢查。 – yoda
我已經驗證jQuery UI是在jQuery之後加載的,問題仍然存在。此外,使用'this'代替正確的id不會消除錯誤。感謝您的建議,但! – CodeRedd