当前位置:  开发笔记 > 编程语言 > 正文

为什么jsfiddle给我错误"SyntaxError:Unexpected token:"?

如何解决《为什么jsfiddle给我错误"SyntaxError:Unexpectedtoken:"?》经验,为你挑选了1个好方法。

我正在使用结构化的JavaScript代码,它在我的计算机上工作正常.但是当我将它添加到jsFiddle时,它会给我以下错误:

SyntaxError: Unexpected token :

我的代码看起来像这样:

var StentGallery = {
    gallery: null,

    init : function(){
            this.gallery = jQuery('#gallery-list-ui');
            this.resizeImage();
        }
    }
    (...)
}

有谁知道为什么这不适用于jsFiddle?
看看我的小提琴:https://jsfiddle.net/smyhbckx/



1> Nick Zuber..:

您的代码中存在语法错误:

var StentGallery = {
    gallery: null,

    init : function(){
           this.gallery = jQuery('#gallery-list-ui');
           this.resizeImage();
           } // <----- this is prematurely closing your object
    }, 

    resizeImage: function(){
    ...

要解决此问题,只需删除该括号:

var StentGallery = {
    gallery: null,

    init : function(){
           this.gallery = jQuery('#gallery-list-ui');
           this.resizeImage();
    },

    resizeImage: function(){
    ...

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有