时间:2020-11-08 12:37:55 | 栏目:JavaScript代码 | 点击:次
在一些要求不是很高的小项目中,可以使用一些虽不是通用且不是新技术但是确实可以很好实现功能的技术来实现这些功能。这样系统不是显示的很复杂,且可以方便维护。
新建一个exportPrint.html页面,里面的代码如下所示,就可以实现导出到Excel和打印网页。
<script type="text/javaScript">
//导出到Excel
function exportToExcel() {
if(document.getElementById("title")) {
try {
var oRangeRef = document.body.createTextRange();
oRangeRef.execCommand("Copy");
var appExcel = new ActiveXObject("Excel.Application");
appExcel.visible = true;
appExcel.Workbooks.Add().WorkSheets.Item(1).Paste();
} catch(e) {
alert("出错啦!可能是浏览器或者是数据量太大咯哦!");
return;
}
appExcel = null;
oRangeRef = null;
}
}
//打印
function print() {
if(document.getElementById("title")) {
var export = document.getElementById("export");
var print = document.getElementById("print");
try {
export.style.display = "none";
print.style.display = "none";
document.all.WebBrowser.ExecWB(6,1);
} catch(e) {
alert("出错啦!可能是浏览器或者是数据量太大咯哦!");
return;
}
export.style.display = "";
print.style.display = "";
}
}
</script>