0

我在传递多个变量时遇到问题。我从这里的基本 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>
4

1 回答 1

0

您遇到的问题是您尝试从他们的 id 中选择隐藏的输入,但函数 DateInput 的第一个参数是字段的名称。

所以你必须改变这些行:

var startDate = document.getElementById('startDate').value;
var endDate = document.getElementById('endDate').value;

经过 :

var startDate = document.getElementsByName('startDate')[0].value;
var endDate = document.getElementsByName('endDate')[0].value;

请注意,如果您有多个具有相同名称的字段,这可能不会返回您想要的字段,请注意 [0],

于 2013-05-24T13:46:40.583 回答