jsp中表单文件导出到word 不知道在jsp页面中怎么导出表格到word 我在网上做了一个 5
但是只能手动写.doc不任性化如果事先把文件名写成.doc就会有错误functiondoExport(){document.all.form1.action="expor...
但是只能手动写.doc 不任性化 如果事先把文件名写成.doc
就会有错误
function doExport(){
document.all.form1.action="export.jsp";
var str = document.getElementById("mytable").outerHTML;
System.out.println(str);
document.all.excelText.value= str;
document.all.form1.submit();
}
<form name="form1" method="post" action="">
<input type="hidden" name="excelText" id="excelText" >
<input name="exportBtn" type="button" onclick="doExport()" class="button" value="导出">
</form> 展开
就会有错误
function doExport(){
document.all.form1.action="export.jsp";
var str = document.getElementById("mytable").outerHTML;
System.out.println(str);
document.all.excelText.value= str;
document.all.form1.submit();
}
<form name="form1" method="post" action="">
<input type="hidden" name="excelText" id="excelText" >
<input name="exportBtn" type="button" onclick="doExport()" class="button" value="导出">
</form> 展开
1个回答
展开全部
function objectToWord(objectId)
{
var word = new ActiveXObject("Word.Application");
var doc = word .Documents.Add("",0,1);
var Range=doc.Range();
var sel = document.body.createTextRange();
sel.moveToElementText(document.getElementById(objectId));
sel.select();
sel.execCommand("Copy");
Range.Paste();
word.Visible = true;
}
<form name="form1" method="post" action="">
<input name="exportBtn" type="button" onclick='objectToWord("mytable");' class="button" value="导出">
</form>
{
var word = new ActiveXObject("Word.Application");
var doc = word .Documents.Add("",0,1);
var Range=doc.Range();
var sel = document.body.createTextRange();
sel.moveToElementText(document.getElementById(objectId));
sel.select();
sel.execCommand("Copy");
Range.Paste();
word.Visible = true;
}
<form name="form1" method="post" action="">
<input name="exportBtn" type="button" onclick='objectToWord("mytable");' class="button" value="导出">
</form>
更多追问追答
追问
求高手修改成功 我点击导出没有反应 就是按你的方法写了一个表单提交导出 可是js没有运行 啊
求高手指教 qq642197441
追答
function objectToWord(objectId)
{
var word = new ActiveXObject("Word.Application");
var doc = word .Documents.Add("",0,1);
var Range=doc.Range();
var sel = document.body.createTextRange();
sel.moveToElementText(document.getElementById(objectId));
sel.select();
sel.execCommand("Copy");
Range.Paste();
word.Visible = true;
}
aaabbb
cccddd
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询