2008-06-24 17:32
//js代碼 //匯出到excel function AutomateExcel(){ var elTable = document.getElementById("datatable"); //要匯出的table id。 var oRangeRef = document.body.createTextRange(); oRangeRef.moveToElementText(elTable); oRangeRef.execCommand("Copy"); var appExcel = new ActiveXObject("Excel.Application"); appExcel.Workbooks.Add().Worksheets.Item(1).Paste(); appExcel.Visible = true; appExcel = null; } //匯出到word //指定頁面地區內容匯入Word function AllAreaWord() { var oWD = new ActiveXObject("Word.Application"); var oDC = oWD.Documents.Add("",0,1); var orange =oDC.Range(0,1); var elTable = document.getElementById("datatable"); var sel = document.body.createTextRange(); sel.moveToElementText(elTable); //sel.select(); sel.execCommand("Copy"); orange.Paste(); oWD.Application.Visible = true; oWD = null; } |
http://hi.baidu.com/kingdom031/blog/item/bec9168285cc0bba6c8119d5.html