0
問題:當我啓動jQueryUI的提示它可以防止另一個腳本的頁面上無法工作。 說明:我有一個頁面上的浮動按鈕:jQuery的工具提示阻止另一腳本工作
<div id="buttonTOC">
<a href="#" id="buttonText" title="Click to open and close the Table of Contents"> Table Of Contents</a>
</div><!-- End button <div> -->
這是使用下面的腳本來打開隱藏的div:
jQuery(document).ready(function($){
$("div#buttonTOC").click(function() {
$("div#table-of-contents").animate({height:'toggle'},500);
});
});
這工作正常,但如果我添加腳本中使用提示那麼它停止工作,並沒有任何反應上點擊。工具提示確實按預期工作。 我已經嘗試了一些實驗來得到這個工作包括以下嘗試對有問題的DIV禁用「提示」,但這不作任何區別。
jQuery(function($) {
$('a#buttonText').tooltip({
track: true
});
$('#buttonTOC *[title]').tooltip('disable');
});
我會懷疑腳本之間的衝突,但後來我又認爲像一個提示將能夠不管其他腳本存在的工作。
我會很感激關於如何成功實現此的任何指導。
感謝
感謝。我雙檢查,以確保這不是問題,它不是。仍然無法使用激活的工具提示腳本。 – dorich