未捕获到的SyntaxError:意外令牌:

未捕获到的SyntaxError:意外令牌:,第1张

捕获到的SyntaxError:意外令牌

我刚刚解决了这个问题。导致标准Request调用出现问题的原因是,这是我改用的代码:

vote.each(function(element){       element.addEvent('submit', function(e){    e.stop();    new Request.JSON({      url : e.target.action,       onRequest : function(){        spinner.show();      },      onComplete : function(){        spinner.hide();      },      onSuccess : function(resp){        var j = resp;        if (!j) return false;        var restaurant = element.getParent('.restaurant');        restaurant.getElements('.votes')[0].set('html', j.votes + " vote(s)");        $$('#restaurants .restaurant').pop().set('html', "Total Votes: " + j.totalvotes);        buildRestaurantGraphs();      }    }).send(this);  });});

如果有人知道为什么标准Request对象给我带来问题,我很想知道。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5166131.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存