我得到以下jquery錯誤:「Uncaught TypeError:屬性'setCurrency'的對象[object Object]不是函數」,我不能讓我的頭靠近。當你試圖改變貨幣的錯誤發生:http://aaronjpitts.com/temp/petiteannee未捕獲TypeError:對象[object對象]的屬性'setCurrency'不是函數
的setCurrency函數定義爲:
jQuery(document).ready(function ($) {
function setCurrency(id_currency)
{
$.ajax({
type: 'POST',
headers: { "cache-control": "no-cache" },
url: baseDir + 'index.php' + '?rand=' + new Date().getTime(),
data: 'controller=change-currency&id_currency='+ parseInt(id_currency),
success: function(msg)
{
location.reload(true);
}
});
}
});
我不得不換我的一些功能jQuery的noconflict功能把事情的工作 的jQuery (文件)。就緒(函數($)
我敢肯定,這事做與錯誤。任何人都可以看到正在生成該錯誤?該網站是建立在的Prestashop。
非常感謝
我們需要查看您的代碼來診斷問題。 –
哪裏定義了「setCurrency」函數? – Stphane
我已更新我的原始帖子。感謝 –