gpt4 book ai didi

javascript - 尝试将变量状态传递给服务器

转载 作者:行者123 更新时间:2023-11-28 04:29:20 24 4
gpt4 key购买 nike

因此,我尝试将变量 bool “状态”(真/假)从 HTML 文件传递​​到服务器。

<script>
$("#aaa").click(function () {
$(this).hide('slow');
$("#bam").html(shay + " arrived ").hide().show(700);
childName = true;
counter++;
if (counter > 12) {
$("#bam").html("All have arrived").hide().show(700);

}
});
</script>

对于每个到达学校的 child ,我都有此函数的多个实例。单击 child 的名字后, child 的变量名称等于 true。我想做的是将这些变量的 bool 状态发送到服务器,这样我就能够远程知道每个 child 的“状态”是什么。有没有办法用 jQuery 的 Post 方法来做到这一点?如果没有,最简单的方法是什么?谢谢!

最佳答案

是的,你可以

<script>
$("#aaa").click(function () {
$(this).hide('slow');
$("#bam").html(shay + " arrived ").hide().show(700);
childName = true;
$.post("url",
{
childStatus: childName,
},
function(status){ // return from server

});
counter++;
if (counter > 12) {
$("#bam").html("All have arrived").hide().show(700);

}
});
</script>

关于javascript - 尝试将变量状态传递给服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44753776/

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