gpt4 book ai didi

JQuery 每个循环将 this.text 与字符串连接起来

转载 作者:行者123 更新时间:2023-12-01 04:13:52 28 4
gpt4 key购买 nike

我有一个应该发送私有(private)消息的每个循环:

[...].each(function () { $.get('board.php?func=list&id=' + (this.text) + '&send=Please read the board rules'); });

当我执行“alert(this.text);”时在每个循环中,一切正常。但是当我将它与 get Request 的字符串连接起来时,它不起作用。我错过了什么吗?

最佳答案

也许用 $.ajax 写得更详细一点可以更清楚地说明为什么您需要使用 $(this).text(),而不是 this.text

$(data from get request).find('#boardmembers')
.children('members')
.each(function() {
$.ajax({
type: 'GET',
url : 'board.php',
data: {
func:'list',
id : $(this).text(),
send: 'Please read the board rules'
}
});
});

关于JQuery 每个循环将 this.text 与字符串连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16881876/

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