gpt4 book ai didi

javascript - 在 JQuery 函数中选择一个元素

转载 作者:行者123 更新时间:2023-11-30 08:06:25 25 4
gpt4 key购买 nike

<分区>

我正在使用 JQuery 和 AJAX 来提交和处理表单。用户提交表单后,处理表单中的 html(使用成功函数)应附加到当前输入。但是不断发生的是,html 被附加到页面上的所有输入,而不仅仅是被选中的输入。

我的代码:

    $(".comment-form").submit(function() {

var dataString = $(this).serialize();
$.ajax({
type: "POST",
url: "comment.php",
data: dataString,
success: function(html) {
$(".comment-input-wrap").append(html); <-- The code in question
}
});

$(this).find('.comment-input').val("");

return false;

});

我尝试使用:

$(this).parent().append(html);

但我认为问题是我不能使用 $(this) 因为它在函数的范围之外。我能做什么?

谢谢!

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com