基于jquery的复制网页内容到WORD的实现代码

基于jquery的复制网页内容到WORD的实现代码,需要的朋友可以参考下。

复制代码 代码如下:


$('#eTableWord').click(
function() {
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(dataTable);
sel.select();
sel.execCommand("Copy");
oRange.Paste();
oWD.Application.Visible = true;
});

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdfjwx.html