window.open以post方式提交(隐藏参数)

  1. function openWindowWithPost(url,keys,values)  
  2. {  
  3.     var newWindow = window.open();  
  4.     if (!newWindow)  
  5.         return false;  
  6.           
  7.     var html = "";  
  8.     html += "";  
  9.     if (keys && values)  
  10.     {  
  11.        html += "";  
  12.     }  
  13.       
  14.     html += "document.getElementById('formid').submit();";  
  15.     html += "";   
  16.     newWindow.document.write(html);  
  17.       
  18.     return newWindow;  
  19. }  

keys为参数;values为参数值

你可能感兴趣的:(window.open以post方式提交(隐藏参数))