我使用 javaScript 编写了一些代码。
function showPopupSettings(userName)
{
var jsonData;
setLoading("Loading User Settings");
jsonData = new function(){
this.className = "User";
this.methodName = "showPopupSettings";
this.userName = userName ;
}
data = JSON.stringify(jsonData);
$.post('ajaxpage.php',{ submit: "commonAction",data:data },
function(data) {
removeLoading();
$("#dialog")
.dialog("destroy")
.html(data)
.show()
.dialog({
modal: true,
title: "User Settings",
buttons: {
Cancel: function() {
$(this).dialog('close');
},
Password: function() {
showChangePasswordTable();
},
Save: function() {
saveNewUserSettings();
$(this).dialog('close');
}
}
});
});
}
通过使用 Jslint 无错误。当我使用 JsLint 检查时将显示以下错误行 10:意外数据
如何纠正这个错误...