0

我的 jQuery 代码不起作用,并且在 Firebug 控制台中显示:“jQuery 未定义”。我检查了 jQuery 正在加载,但我仍然不明白为什么它显示错误。

我的 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 );
4

2 回答 2

3

你没有包括 jQuery!将此添加到您的<head>或结束之前<body>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
于 2012-05-16T21:46:00.720 回答
0

看起来您正在从http://shop.daactive.com/prototype.js而不是 jQuery 加载prototype.js(v 1.6.0.3)。

要继续使用原型,您需要为原型库而不是 jQuery 重构 javascript:http: //api.prototypejs.org/

如果您也选择包含 jQuery,则需要在“安全”模式下使用 jQuery:http: //docs.jquery.com/Using_jQuery_with_Other_Libraries

但这意味着要加载 2 个 javascript 库,这可能是一大块要加载的 javascript,同时考虑到页面加载时间。

于 2012-05-16T21:51:28.923 回答