Office文档在线编辑的一个实现方法(office文件在线编辑)深度揭秘

随心笔谈2年前发布 编辑
196 0
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买

function Document_Edit2( url )

{

if( __OpenDocuments==null )

{

try{

__OpenDocuments=new ActiveXObject(“SharePoint.OpenDocuments.3”); //for office 2007

}catch(e){}

if( __OpenDocuments==null || typeof(__OpenDocuments)==”#ff0000″ )

{

try{

__OpenDocuments=new ActiveXObject(“SharePoint.OpenDocuments.2”); //for office 2003

}catch(e){}

}

if( __OpenDocuments==null || typeof(__OpenDocuments)==”undefined” )

{

alert( “请安装Word(2003或更高版本)” );

return ;

}

}

// openDocObj.ViewDocument(“http://www.abc.com/documents/sample.doc”);, “Word.Document”

//openDocObj.CreateNewDocument(“http://www.abc.com/documents/sampleTemplate.dot”, “http://www.abc.com/documents/”);

var result=__OpenDocuments.EditDocument( url , “Word.Document” );

if( result==false )

{

alert( “无法打开文档.” );

}

}

© 版权声明

相关文章