weboffice官方下载地址:
http://www.officectrl.com/download_01.htm
//WebOffice问题解决
http://forum.dianju.cn/viewforum.php?f=3&sid=691ec321f8b5218ff9a0d259f83e0498
weboffice浏览器兼容性设置
//浏览器兼容设置
var weboffice = "";
//var height = parent.document.getElementById("PrjList").scrollHeight;
var height = document.body.clientHeight;
height = height - 50;
if (navigator.userAgent.indexOf("MSIE") > 0) {
weboffice = "<OBJECT id='WebOffice1' align='middle' style='LEFT: 0px; WIDTH: 100%; TOP: 0px; HEIGHT:" + height + "px'"
+ "classid=clsid:E77E049B-23FC-4DB8-B756-60529A35FAD5 codebase='../../../WebOffice/WebOffice.cab'>"
+ "</OBJECT>";
}
if (navigator.userAgent.indexOf("Chrome") > 0) {
weboffice = "<object id='WebOffice1' type='application/x-itst-activex' align='baseline' border='0'"
+ "style='LEFT: 0px; WIDTH: 100%; TOP: 0px; HEIGHT: 600px'"
+ "clsid='{E77E049B-23FC-4DB8-B756-60529A35FAD5}' codebase='../../../WebOffice/WebOffice.cab'"
+ "event_NotifyCtrlReady='WebOffice1_NotifyCtrlReady'>"
+ "</object>";
}
if (navigator.userAgent.indexOf("Firefox") > 0) {
weboffice = "<object id='WebOffice1' type='application/x-itst-activex' align='baseline' border='0'"
+ "style='LEFT: 0px; WIDTH: 100%; TOP: 0px; HEIGHT: 600px'"
+ "clsid='{E77E049B-23FC-4DB8-B756-60529A35FAD5}' codebase='../../../WebOffice/WebOffice.cab'"
+ "event_NotifyCtrlReady='WebOffice1_NotifyCtrlReady'>"
+ "</object>";
}
document.write(weboffice)