以下是给出该错误的代码。
<html>
<head>
<script type="text/javascript">
var d = new Date();
var date = d.toLocaleString();
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","test.php?date"+date,true);
xmlhttp.send();
</script>
</head>
<body>
<div id ="myDiv"></div>
</body>
</html>
这是php代码。
<?php
$date = $_GET['date'];
echo $date;
?>
答案 0 :(得分:1)
错误是查询字符串
xmlhttp.open("GET","test.php?date"+date,true);
^^^^
它缺少名称和值之间的=,添加=并且服务器将停止抱怨它不知道[DateString]在GET参数中的日期
xmlhttp.open("GET","test.php?date="+date,true);
^
更好的编码呢
xmlhttp.open("GET","test.php?date="+encodeURIComponent(date),true);
^
答案 1 :(得分:0)
替换此行,然后重试
xmlhttp.open("GET","test.php?date="+date,true);