运行页面时,我在控制台中收到意外的令牌错误。任何人都可以帮助指出这是从哪里来的?我相信我会失明,因为我看不到它。
define('QuoteSetupPageController', 'jquery' {
this.init = function() {
$(document).click(function(){
$('.header-message-indicator').hide();
});
}
});
错误在第1行。
谢谢。
答案 0 :(得分:5)
应该是:
define('QuoteSetupPageController', 'jquery', {
你错过了一个逗号。