在jsp页面,将页面中显示的内容,生成word。这个怎么做呢?SSH框架,怎么实现 10
展开全部
//获取页面内容
//调用word组件
//生成新文件
var table=document.getElementByIdx_x('printTable');
row=table.rows.length;
column=table.rows(1).cells.length;
var word = new
ActiveXObject("Word.Application");
word.Application.Visible =
true;
word.Selection.Text ="<%=reportTitle%>";
var
mydoc=word.Documents.Add('',0,0);
myRange
=mydoc.Range(0,1);
var
sel=document.body.createTextRange();
sel.moveToElementText(table);
sel.select();
sel.execCommand('Copy');
myRange.Paste();
追问
不是表格,是整个页面的内容,生成word,具体一点
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询