未捕获的SyntaxError:意外的令牌非法

我正在将我的JavaScript文件归档到外部文件中。 通过这个过程,我在Chrome中遇到了以下错误:

未捕获的SyntaxError:意外的令牌非法行:2

$(document).bgStretcher({
#if($CURRENTPAGE.pageId==23)

    images: ['/media/backgrounds/homepage/homepage.jpg'], imageWidth: 1860, imageHeight: 1000
    #else
        images: ['/media/backgrounds/Dreamjob_coachfoto_'+pad(randomnumber,3)+'.jpg'], imageWidth: 1860, imageHeight: 1000
    #end
    });

谁能帮我?


正确的语法(图像上的语法看起来很奇怪,但我找不到bgstretcher的完整文档抱歉)

$(document).bgStretcher({
if($CURRENTPAGE.pageId==23) {

images: ['/media/backgrounds/homepage/homepage.jpg'], imageWidth: 1860, imageHeight: 1000
}  
 else   {
    images: ['/media/backgrounds/Dreamjob_coachfoto_'+pad(randomnumber,3)+'.jpg'],              imageWidth: 1860, imageHeight: 1000
 }
});

使用Firefox进行调试(使用Firebug),它会给你提供比Chrome更多的信息,这种类型的错误。

链接地址: http://www.djcxy.com/p/45981.html

上一篇: Uncaught SyntaxError: Unexpected token ILLEGAL

下一篇: Javascript error : Uncaught SyntaxError: Unexpected token ILLEGAL