我在传递多个变量时遇到问题。我从这里的基本 W3schools 示例开始:http: //www.w3schools.com/php/php_ajax_database.asp我的 php 代码需要报告类型,它存储在“报告”和“开始日期”和“结束日期”中. 当与原始样本和硬编码 startDate 和 endDate 保持一致时,脚本可以完美执行。然后我尝试为 startDate 和 endDate 添加 Jason Moon 的日历,但无法传递变量。理想情况下,我还希望表单在编辑任何字段(包括日历)时自动更新数据输出,据我了解,Jason Moon 的日历正在为 startDate 和 endDate 创建一个隐藏的文本字段。这是我所拥有的:
<html>
<head>
<script type="text/javascript">
function showReport()
{
var report = document.getElementById('report').value;
var startDate = document.getElementById('startDate').value;
var endDate = document.getElementById('endDate').value;
if (report=="" && startDate=="" && endDate=="")
{
document.getElementById("txtOutput").innerHTML="";
return;
}
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("txtOutput").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","report.php?report="+report+"&startDate="+startDate+"& endDate="+endDate,true);
xmlhttp.send();
}
</script>
<script type="text/javascript" src="js/cal.js">
/***********************************************
* Jason's Date Input Calendar- By Jason Moon http://calendar.moonscript.com/dateinput.cfm
* Script featured on and available at http://www.dynamicdrive.com
* Keep this notice intact for use.
***********************************************/
</script>
</head>
<body>
<form>
<select name="report" onChange="showReport()">
<option value="">Type:</option>
<option value="msales">Marketplace</option>
<option value="lsales">Location</option>
<option value="cos">COS</option>
<option value="inventory">Inventory</option>
</select>
<br> StartDate:
<script>DateInput('startDate', true, 'YYYY-MM-DD')</script>
EndDate:
<script>DateInput('endDate', true, 'YYYY-MM-DD')</script>
</form>
<br>
<div id="txtOutput"><b>Report info will be listed here.</b></div>
</body>
</html>