Ajax在为动态PHP输出传递多个表单变量时遇到麻烦

时间:2013-05-24 13:33:35

标签: php javascript ajax

我遇到了传递多个变量的问题。我从这里开始使用基本的W3schools示例:http://www.w3schools.com/php/php_ajax_database.asp我的php代码需要报告类型,它存储在“报告”和“报告”中。一个“startDate”&一个“结束日期”。保持原始样本和硬编码startDate& endDate,脚本执行完美。然后我尝试为startDate&添加Jason Moon的日历。 endDate,无法传递变量。理想情况下,我还喜欢在编辑任何字段时自动更新数据输出的表单,包括日历,我的理解Jason Moon的日历正在为startDate和amp;创建一个隐藏的文本字段。结束日期。这就是我所拥有的:

    <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>

1 个答案:

答案 0 :(得分:0)

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

所以你必须改变这些行:

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

by:

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

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