`
softtian1983
  • 浏览: 183797 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

jsp导出excel文件

阅读更多

jsp中导出excel相当方便,通过简单的js即可。js如下

 

function excelPrint(objStr,tag_id){
   var tempStr = document.getElementById(tag_id).outerHTML;
   var newWin = window.open();
   newWin.document.write(tempStr);

   newWin.document.close();
   newWin.document.execCommand('saveas',true,objStr+'.xls');
   newWin.window.close();
 }

 

参数说明:

objStr--导出的excel的默认文件名。

tag_id---要导出的html标签的id,可以是table,div等

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics