代码如下:
用户信息 | |
姓名 | 张三 |
//导出到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>