当我用 jQuery 的 AJAX 方法添加我的评论时,我感到窒息,压力很大后,我想让这个文本框为空
我的 Ajax 方法是这样的:
function AddComments() {
$(".Comment input[type=text]").keypress(function (e) {
if (e.which == 13) {
var comment = $("#" + this.id).val();
var textId = "#" + this.id.replace("txt", "div");
$(textId).append(comment);
$.ajax({
type: "POST",
url: "Posts.aspx/AddComments",
data: "{'id': '" + this.id.replace("txt", "") + "','comments': '" + comment + "'}",
dataType: "json",
contentType: "application/json",
success: function (response) {
$("#" + this.id).val("");
//alert(response.d);
}
});
}
});
}
我想要的是成功,我想让当前文本框为 NULL
$("#" + this.id).val("");