这里涉及 3 个文件:coordinates_update.html、passitalong.js 和 dbquery.php
坐标更新包括 jquery、javascript 和 passitalong.js,当一个按钮被按下时,它会获取一堆变量并调用 passitalong.js 中的函数,同时将变量传递给这个函数。我已经通过警告声明确认了这项工作。传递它。js 现在包含一行 ajax 代码,用于将这些变量传递给 qbquery.php(最终用于查询数据库,但现在仅用于测试)。dbquery.php 然后使用 get 语句来获取变量,它应该回显它。
问题是当它将变量传递给 PHP 文件时,之后什么也没有发生。它不会回显任何变量或我放入其中的测试回显,并且打开它什么也不做。以下是相关代码:
coordinates_update.html
updatedb(lat,lng,street); //all declared and working
passitalong.js
$.get("dbquery.php", {latitude: lat}, {longitude: lng}, {id:street} );
qbquery.php
<?php
$longitude = $_GeT['longitude'];
$latitude = $_Get['latitude'];
$street= $_Get['id'];
echo "test";
echo $street;
?>
任何线索有什么问题?