window.f1.action="http://xxx.jsp?xxxxxxxxxxxxxxxxxxxxxxxxx&lq="+lq1.value;
以及其它各种获取lq1 的value的方法!   

解决方案 »

  1.   

    FYI:function f(){     window.f1.action="http://xxx.jsp?xxxxxxxxxxxxxxxxxxxxxxxxx&lq="+window.f1.lq1.value;  
         
       window.f1.submit();    
      }    
      

  2.   

    window.f1.action="http://xxx.jsp?xxxxxxxxxxxxxxxxxxxxxxxxx&lq="+document.getElementByName('lq1').value;  
      

  3.   

    window.f1.action="http://xxx.jsp?xxxxxxxxxxxxxxxxxxxxxxxxx&lq="+document.getElementByName('lq1').getAttribute("value");