技术文摘

利用wordexport插件将内容转换word文档教程

作者:雨祺   发表于:
浏览:135次    字数:437  原创
级别: 站长   总稿: 69 篇,  月稿: 0

1、首先下载wordexport的js,下载地址:

https://GitHub.com/eligrey/FileSaver.js/

https://github.com/markswindoll/jQuery-Word-Export

2、然后在需要转换的页面引入jquery 和FileSaver.js
 

  1. <script type="text/javascript" src="js/jquery.min.js"></script> 
  2. <script type="text/javascript" src="js/FileSaver.js"></script> 
  3. <script type="text/javascript" src="js/jquery.wordexport.js"></script> 
3、在需要转换的内容的DIV上加上ID
  1. <div id="export-content">Your content here</div> 
4、创建一个导出的按钮例如:
  1. <a class="btn jquery-word-export" href="javascript:void(0)">导出为.《[!--title--]》文档</a> 
5、最后加上事件JS代码
  1. <script type="text/javascript"
  2. jQuery(document).ready(function($) { 
  3.     $("a.jquery-word-export").click(function(event) { 
  4.         $("#pagecontent").wordExport(); 
  5.     }); 
  6. }); 
  7. </script> 

 

【审核人:站长】

收藏   加好友   生成海报   分享
点赞(0)
打赏
Tags: 教程 文档 插件 word

发布者资料

热门文章

技术文摘

查看更多技术文摘
首页
栏目
搜索
会员
投稿