js 向action 传长参数

js 向action 传长参数

 

function  openWindowWithPost(url,name,keys,values)
{
var newWindow = window.open(url, name); 
if (!newWindow) return false;
var html = "";
html 
+= "<html><head></head><body><form id='formid' method='post' action='" + url + "'>";
if (keys && values && (keys.length == values.length))
for (var i=0; i < keys.length; i++)
{
//alert(keys[i]+"="+values[i]);
html += "<input type='hidden' name='" + keys[i] + "' value=\"" + values[i] + "\"/>";
}

html 
+= "</form><script type='text/javascript'>document.getElementById(\"formid\").submit()</script></body></html>";
newWindow.document.write(html);
return newWindow;
}

你可能感兴趣的:(js 向action 传长参数)