在js中的每个页面上生成带有页脚的word文件

时间:2017-08-10 05:40:29

标签: javascript jquery html xml

我正在使用 jquery.wordexport.js 将html导出到word文件文件。我需要在每个页面上添加页脚图像。有人可以帮忙吗?

   $("#exportToWord").click(function(e) {
     prepareTable();
     body = window.data;
         if ($('#model_div').children().length > 0) {
             $('#model_div').empty();
         }
     if (window.success) {

         var content = "<div class='modal fade bs-example-modal-lg' tabindex='-1' role='dialog' aria-labelledby='myLargeModalLabel'><div class='modal-dialog modal-lg'><div class='modal-content'><div class='modal-body' id='model_body'><input type='button' onClick='exportWord()' value='Export' class='export_button'>" + body + "</div></div></div>";
         $('#model_div').append(content);
     };
 });

 function exportWord() {
     var name = $("#from").val().substring(0, 10) + ' ' + $("#to").val().substring(0, 10);
     $("#page-content").wordExport(name);
     $("#from").val(null);
     $("#to").val(null);
      window.success = false;
     window.data = null;

 }

prepareTable()函数将window.data设置为使用ajax从db收到的所有数据。如果成功的window.success将是真的。

1 个答案:

答案 0 :(得分:0)

我从https://github.com/aadel112/googoose找到了jquery.googoose.js库,现在我正在生成格式正确的Microsoft Word(.doc)文件。