我試圖實現jQuery選項卡來替換AJAX選項卡容器。我遵循jquery website的代碼,但我的標籤沒有顯示出來。它只是加載整個頁面充滿數據沒有標籤。而螢火告訴我下面的錯誤:jQuery選項卡不工作
$("#tabs").tabs is not a function
$("#tabs").tabs();
我有引用所需的所有文件:
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
而且我已經得到了功能規定如下:
<script type="text/javascript">
$(document).ready(function() {
$("#tabs").tabs();
});
</script>
爲標籤的代碼如下:
div id="tabs">
<ul>
<li><a href="#tab-1"><span>Patient Information</span></a></li>
<li><a href="#tab-2"><span>Medical History 1 of 3</span></a></li>
<li><a href="#tab-3"><span>Medical History 2 of 3</span></a></li>
<li><a href="#tab-4"><span>Medical History 3 of 3</span></a></li>
<li><a href="#tab-5"><span>Scheduler</span></a></li>
<li><a href="#tab-6"><span>Care Plan</span></a></li>
</ul>
<div id="tab-1">
</div>
**Repeats for all tabs through tab-6**
</div>
誰能告訴我什麼,我做錯了什麼?由於.tabs()函數不工作,頁面就像這樣加載 -
這聽起來像jQuery UI的是無法加載。確定js文件實際上正在加載。如果你有螢火蟲(你應該),檢查螢火蟲淨選項卡。 – SoWeLie