gpt4 book ai didi

php - 如何在php中访问javascript变量

转载 作者:行者123 更新时间:2023-11-28 09:17:07 25 4
gpt4 key购买 nike

这是我的代码:在函数中:

var daaa=document.getElementById('da').value= year+ "-" +month+ "-" +day;
document.form1.bookingsession.focus();
var coords = {
"lat": daaa
};
$.get('bs.php', coords, function () {
alert('data sent');
});

我的 php 代码是:

<?php
$output = isset($_GET['lat']) ? $_GET['lat'] : 0;
print("$output");
?>

当我打印 $output 时,我得到的值为 0,但实际上必须获取变量 daaa 上的值。让我知道我哪里出错了......预先感谢您

最佳答案

尝试改变

var daaa=document.getElementById('da').value= year+ "-" +month+ "-" +day;

var daaa=document.getElementById('da').value + "-" + year+ "-" +month+ "-" +day;

无论如何,在这种情况下,您的“第一”操作应该是检查变量是否确实在客户端设置。您可以通过alert(daaa)或console.log(daaa);

关于php - 如何在php中访问javascript变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15520727/

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