当前位置: 代码迷 >> ASP.NET >> !javascript href 参数的有关问题
  详细解决方案

!javascript href 参数的有关问题

热度:7123   发布时间:2013-02-25 00:00:00.0
求助!!!javascript href 参数的问题
代码如下: <input   type= "button "   name= "query "   id= "query "   value= "query "     onclick= "javascript:window.location.href= 'list_report.asp?startdate= '+document.getElementById( 'startdate ').value&amp;enddate= '+document.getElementById( 'enddate ').value; "/>

单独传?startdate= '+document.getElementById( 'startdate ').value或传enddate= '+document.getElementById( 'enddate ').value   参数没问题,要两个一起传就不知道怎么写了,总是出错!求达人帮助啊!

------解决方案--------------------------------------------------------
input type= "button " name= "query " id= "query " value= "query " onclick= "javascript:window.location.href= 'list_report.asp?startdate= '+document.getElementById( 'startdate ').value + '&enddate= '+document.getElementById( 'enddate ').value; "/>
  相关解决方案