网页导出Word几种方法简介

  • jQuery打印插件jqprint

加入迁移辅助插件jquery-migrate-1.0.0.js可解决版本问题

引jquery 和jqprint


js  


function  a(){
        $("#ddd").jqprint();
    }

 html


    
        
            
            
            
            
            
        
    
testtesttesttesttest

点击打印按钮后,在打印页面设置保存为PDF,PDF可以转为Word。 
该方法简单,页面格式不会乱,但是不够简单。

参考文章

  • jquery.wordexport.js 实现导出word

引入jquery 、FileSaver.js和jquery.wordexport.js



html

 导出 
test

js

实现简单,行的样式基本一致,列的样式混乱

  • 百度的JS模板引擎

引入百度的JS模板引擎

 
 

html



 

js

var type = "docx";//pdf
    var data = {
    }
    function renderTemplate() {
	var template = $("#tmpl").html();
	$("body").append(template);
    }
    renderTemplate();
    function gen(type) {
	XDoc.to(baidu.template('tmpl', data), type, {}, "_blank");
    }

这个技术,好像是限制有点多,导出文本和图片还行。

有没有更好的Word导出??

你可能感兴趣的:(Word导出)