function RejectItem(link, compqID, comments, officerID) {
if ($(link).parent().find("div.divComments").is(":visible")) {
$.ajax({
type: "POST",
url: "../contentService.asmx/RejectComplianceItem",
data: "{ 'compqID': '" + compqID + "', 'comments': '" + $(link).parent().find("div.divComments").find('.taComments').val() + "', 'officerID': '" + officerID + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
hideRow(compqID);
}
});
} else {
$(link).parent().find("div.divComments").show();
}
}
每當($(link).parent().find("div.divComments").find('.taComments').val())
返回此函數中具有單引號的值時,它將失敗。Ajax調用替換單引號jquery
是否有修復?
這是什麼實際上做? –
@Richard:它將對象編碼爲JSON。比手動構建更好,並且它會妥善處理轉義。 –
很酷。它是否是jQuery的一部分或瀏覽器的本地? –