引入插件库
下载地址:https://github.com/Jasmine1227/jquery.wordexport.js
下载地址:https://github.com/eligrey/FileSaver.js/
<script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/FileSaver.js"></script> <script type="text/javascript" src="js/jquery.wordexport.js"></script>
HTML代码
需要导出的内容:
<div id="pagecontent">我的站长站 www.wdzzz.com</div>
导出事件触发按钮:
<a class="btn" href="javascript:void(0)">导出为.doc文档</a>
js代码
<script type="text/javascript"> jQuery(document).ready(function($) { $(".btn").click(function(event) { $("#pagecontent").wordExport("导出文件的名称"); }); }); </script>