方法一 iframe直接引入excel文件
<form id="form1" runat="server"> <iframe src="./11111.xls" width="100%" height="800px" runat="server" id="iframe1"></iframe> </form> <html> <body> <iframe id="officeContent" src="" width=0 height=0 frameborder=0></iframe> </body> </html>
$('#officeContent').attr("src","[请求路径]");
方法二 文档另存为html页面显示
- 带标签如: ${name} 的word 另存为 html,修改为jsp 可以通过 EL表达式获得返回数据
- 嵌入iframe
<iframe src="${ctx}/Test.html" frameBorder=0 scrolling=no width="100%"></iframe>
- 注意:标签串行,是因为标签文字格式不一致。(可以在在txt文档编辑器里写好标签复制到模板中)