我有一个语法错误,在我的代码中一切似乎都是正确的但是一旦我进入控制台,我有以下错误:SyntaxError:missing:after property id
我没有得到什么id,因为我在我正在使用的代码行上没有任何id。
这是我的代码:
wizard.place.phones = [];
var phones = $('input[name="place[phones]"]');
var phoneLabels = $('input[name="place[phoneLabel]"]');
for (var i = phones.length - 1; i >= 0; i--) {
wizard.place.phones.push({$(phoneLabels[i]).val(): $(phones[i]).val().trim().replace(/\s+/g, ''),"description": ''});
};
if (wizard.currentIsValid){
wizard.place.save();
}
}
并根据控制台错误出现在这一行:
wizard.place.phones.push({$(phoneLabels[i]).val(): $(phones[i]).val().trim().replace(/\s+/g, ''),"description": ''});
先谢谢。