这是我的代码: 在函数中:
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 上的值。让我知道我在哪里犯了错误....提前谢谢你