-1
我使用joomla 3.6,我安裝了一些插件,但我正在爲這個jquery插件而苦惱。在控制檯它表明我這個錯誤快速入門jquery插件在網站上顯示錯誤?
TypeError: $(...).ready is not a function: Anonymous
對於需要1.6.1版本的jQuery和jQuery的-UI 1.8.14。但我測試了默認的joomla jquery版本:1.11.2和jquery-UI 1.9.2在一個明確的網站上,它的工作原理。所以jquery版本沒有問題。
// Use the .autocomplete() method to compile the list based on input from user
$('#itemCode').autocomplete({
source: '/db/item-data.php',
minLength: 1,
select: function(event, ui) {
我已經在joomla模板的head.php中添加了需要的腳本。
也許腳本jquery lib必須先加載? – Roy
這些腳本是我的頭版行代碼中的第一個。 – PcWolf