gpt4 book ai didi

php - 使用 PHP 表单提交的 POST javascript 变量

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

我正在使用 Goole map ,并希望在表单发布中包含 2 个 javascript 变量(标记的经度和纬度)。这是我拥有的:

 function saveData() {
var name = escape(document.getElementById("name").value);
var address = escape(document.getElementById("address").value);
var type = document.getElementById("type").value;
var latlng = marker.getLatLng();
var lat = latlng.lat();
var lng = latlng.lng();

我需要在现有表单帖子中包含“var lat”和“var lng”。

<form id="form1" name="form1" method="post" action="catchprocess.php">

感谢您提供的任何帮助!

最佳答案

您可以在表单中的隐藏字段中分配这些纬度和经度

  var lat = latlng.lat();
var lng = latlng.lng();
document.getElementById("t1").value=lat;
document.getElementById("t2").value=lng;

<form id="form1" name="form1" method="post" action="catchprocess.php">
<input type="hidden" name="lat" id="t1">
<input type="hidden" name="long" id="t2">
//form end

catchprocess.php 中,您可以访问经纬度

$_POST['lat'] and $_POST['long'] 

关于php - 使用 PHP 表单提交的 POST javascript 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4524761/

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