ExtJS 下载,保存,打印传递大量数据解决办法!
直接看代码:
function openWindowByPost(url,name1,value1,name2,value2){
var newwindow=window.open(url);
newwindow.document.write(
<html>
<body>
<form id="formidA" action='+url+',method="post">
<input type="hidden" name='+name1+' value='+value1+' />
<input type="hidden" name='+name2+' value='+value2+' />
</form>
</body>
</html>);//封装一个form表单
return newwindow;
}
//调用
newwindow= openWindowByPost(url,name1,value1,name2,value2);
newwindow.document.getElementById('formidA').submit();
//搞定
上一篇: 一个初级应届毕业生(初级程序员)的茫然
下一篇: Python(九)字典和集合