gpt4 book ai didi

jquery - 为什么 ajax 调用后 $(this) 未定义

转载 作者:行者123 更新时间:2023-12-01 03:21:07 24 4
gpt4 key购买 nike

当单击 ID 设置为 href 的 anchor 标记时,我正在执行 ajax 请求。顺便说一句,这个 anchor 标记是动态创建的。

<a href="983" class="commentDeleteLink">delete</a>

当点击 anchor 标记时,将执行以下代码:

    $('.commentDeleteLink').live('click', function(event) {
event.preventDefault();
var result = confirm('Proceed?');

if ( result ) {
$.ajax({
url: window.config.AJAX_REQUEST,
type: "POST",
data: { action : 'DELCOMMENT',
comment : $('#commentText').val(),
comment_id : $(this).attr('href') },
success: function(result) {
alert($(this).attr('href'));
//$(this).fadeOut(slow);
}
});
}
});

当我尝试显示 $(this).attr('href') 时,它说它“未定义”。我真正想做的是淡出 anchor 标记,但是当我调查 $(this) 的值时,它是“未定义”的。

上面的代码片段可能有什么问题?

最佳答案

你应该尝试

$('.commentDeleteLink').live('click', function(event) {
event.preventDefault();
var result = confirm('Proceed?');
var that = this;
if ( result ) {
$.ajax({
url: window.config.AJAX_REQUEST,
type: "POST",
data: { action : 'DELCOMMENT',
comment : $('#commentText').val(),
comment_id : $(this).attr('href') },
success: function(result) {
alert($(that).attr('href'));
//$(that).fadeOut(slow);
}
});
}
});

因为回调中的 this 不是被单击的元素,所以您应该将 this 缓存在可以重复使用的变量 that 中对上下文不敏感

关于jquery - 为什么 ajax 调用后 $(this) 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9827291/

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