我的jQuery代碼不工作,並在螢火蟲控制檯它說:「jQuery沒有定義」。我檢查jQuery正在加載,但我仍然沒有得到它爲什麼顯示錯誤。jQuery沒有定義,找不到原因?
網站URL在下面的評論中給出,所以我可以在問題解決時將其刪除。您的幫助將不勝感激。
我的jQuery代碼看起來像:
(function($) {
$(document).ready(function() {
$("form#add #divOptionsBlock .item img").css("visibility","hidden");
$('#divOptionsBlock .txtBoxStyle:first').change(function() {
var fpath = $("#divOptionsBlock .item img").attr("src") ;
var finalimage = 'http://shop.daactive.com/thumbnail.asp?file='+fpath+'&maxx=300&maxy=0';
var fpath2 = $("form#add img#large").attr("src",finalimage);
var imagepath_ahref="http://shop.daactive.com/"+fpath;
var fpath3 = $("form#add a#listing_main_image_link").attr("href",imagepath_ahref);
var fpath4 = $("form#add a#listing_main_image_link .MagicBoxShadow img").attr("src",imagepath_ahref);
var textvalue = $('#divOptionsBlock .txtBoxStyle:first option:selected').text()
$("#imagecaptiont").html(textvalue);
});
});
}) (jQuery);
可能是這個提問者看到的奇怪的東西,特別是如果它只在Firefox 4中。http://stackoverflow.com/questions/10605780/jquery-undefined-and-undefined-errors-in-firefox-4/10605914# 10605914 –
你有鏈接到jQuery文件嗎? – Blazemonger
是的,我有和它的加載我檢查了它在螢火蟲NET – Imran