word导出

Posted on 2007-08-27 11:31 冰江独行 阅读(234) 评论(0)  编辑  收藏
//指定页面区域内容导入Word
 function AllAreaWord()
 {
  var oWD = new ActiveXObject("Word.Application");
  var oDC = oWD.Documents.Add("",0,1);
  var oRange =oDC.Range(0,1);
  var sel = document.body.createTextRange();
  sel.moveToElementText(PrintA);
  sel.select();
  sel.execCommand("Copy");
  oRange.Paste();
  oWD.Application.Visible = true;
  //window.close();
 }


其中PrintA为table表单的id

只有注册用户登录后才能发表评论。


网站导航:
 

posts - 15, comments - 15, trackbacks - 0, articles - 2

Copyright © 冰江独行