欢迎来到天天文库
浏览记录
ID:1235962
大小:96.00 KB
页数:26页
时间:2017-11-09
《点聚weboffice常用接口》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、点聚weboffice常用接口本文引用自wangfeng_mails《点聚weboffice常用接口》/****************************************************** 关闭页面时调用此函数,关闭文件*****************************************************/functionwindow_onunload(){ try{ varwebObj=document.getElementById("WebOffice1");
2、 webObj.Close(); }catch(e){ // alert("异常rError:"+e+"rErrorCode:"+e.number+"rErrorDes:"+e.description); }}/****************************************************** 新建文档*****************************************************/functionnewDoc(){ try{ var
3、webObj=document.getElementById("WebOffice1"); vardoctype=document.getElementById("doctype").value; webObj.LoadOriginalFile("",doctype); }catch(e){ alert("异常rError:"+e+"rErrorCode:"+e.number+"rErrorDes:"+e.description); }}/*************************
4、***************************** 显示打印对话框*/***************************************************/functionshowPrintDialog(){ try{ varwebObj=document.getElementById("WebOffice1"); webObj.PrintDoc(1); }catch(e){ alert("异常rError:"+e+"rErrorCode:"+e.number+"
5、rErrorDes:"+e.description); }}/****************************************************** 直接打印*****************************************************/functionzhiPrint(){ try{ varwebObj=document.getElementById("WebOffice1"); webObj.PrintDoc(0); }catch(e){
6、alert("异常rError:"+e+"rErrorCode:"+e.number+"rErrorDes:"+e.description); }}/****************************************************** 关闭页面时调用此函数,关闭文件*****************************************************/functionwindow_onunload(){ try{ varwebObj=docume
7、nt.getElementById("WebOffice1"); webObj.Close(); }catch(e){ alert("异常rError:"+e+"rErrorCode:"+e.number+"rErrorDes:"+e.description); }}/****************************************************** 解除文档保护*************************************************
8、****/functionUnProtect(){ try{ varwebObj=document.getElementById("WebOffice1"); webObj.ProtectDoc(0,1,document.all.docPwd.value); }catch(e){ alert("异常rError:"+e+"rErrorCode:"+e.n
此文档下载收益归作者所有