页面嵌入隐藏iframe实现导出功能

Posted 林暗草惊风丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面嵌入隐藏iframe实现导出功能相关的知识,希望对你有一定的参考价值。

 <div style="display: none">
	<form action="" name="exportExcel" id="exportExcel" target="export
		method="post" accept-charset="utf-8"></form>
	<iframe name="export" id="export"></iframe>
 </div>

  

var f = document.getElementById(‘exportExcel‘);
var actionUrl = ‘envElecPriceAction!downLoadDetailFrist.action?envElecPrice.beginTime=‘ + beginTime
	+ ‘&envElecPrice.endTime=‘ + endTime
	+ ‘&envElecPrice.zoneId=‘  + zoneId
	+ ‘&envElecPrice.pollSourceId=‘ + pollSourceId
	+ ‘&envElecPrice.pollSourceName=‘ + Ext.getCmp(‘sourceNameId33‘).getValue()
	+ ‘&envElecPrice.labelId=‘ + Ext.getCmp(‘groupLabelComboBoxId3‘).getValue()
	+ ‘&envElecPrice.polluteName=‘+ polluteData;
f.action = actionUrl;
f.submit();

  

以上是关于页面嵌入隐藏iframe实现导出功能的主要内容,如果未能解决你的问题,请参考以下文章

iframe滚动条跟div滚动条怎么实现 联动

如何同步iframe与嵌入内容的高度

HTML,VUE,嵌入iframe,实现iframe的100%高度和宽度,代码分享

判断页面是否被嵌入iframe里面

判断页面是否被嵌入iframe里面

结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url