我有以下脚本,它在我的控制台中返回以下错误:
Uncaught SyntaxError: Unexpected token }..
根据我的控制台}
,介于两者之间**
的是导致问题的原因。但这就是关闭 AJAX 请求的“成功”的括号。而且如果我删除用 -> 指出的语句,错误似乎消失了。有人看到这有什么问题吗?
注意:我的代码中没有这些**
,只是为了指出错误。
$(document).ready(function() {
$('#edit_patient_info').click(function () {
//Get the data from all the fields
$.ajax({
url: "patient_info_controller.php",
type: "POST",
data: data,
success: function (msg) {
if (msg==1) {
getPersoonlijkGegevens(user_id);
unLockFirstPage();
alert("Gegevens zijn gewijzigd!");
$("#searchbox").val(voornaam.val());
searchPatient();
-> $('#selectable li:first').addClass('ui-selected');
}
**}**
});
});
});