寻找一种HTML页面转word时候插入页面页脚修改方法

目前使用的插件是jQuery-WordExport.js和FileSaver.js,想问问怎么去修改插件目前的js达到导出word附带页眉页脚的办法,目前网上只找到了一种方法,但不知道asp.net怎么修改,想问问js可以改吗。
目前我修改后的jQuery-WordExport.js 插件的代码

if (typeof jQuery !== "undefined" && typeof saveAs !== "undefined") {
    (function ($) {
    $.fn.wordExport = function (fileName) {
        fileName = typeof fileName !== 'undefined' ? fileName : "jQuery-Word-Export";
        var static = {
            mhtml: {
                top: "Mime-Version: 1.0\nContent-Base: " + location.href + "\nContent-Type: Multipart/related; boundary=\"NEXT.ITEM-BOUNDARY\";type=\"text/html\"\n\n--NEXT.ITEM-BOUNDARY\nContent-Type: text/html; charset=\"utf-8\"\nContent-Location: " + location.href + "\n\n<!DOCTYPE html>\n<html>\n_html_</html>",
                head: "<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<style>\n_styles_\n</style>\n</head>\n",
                body: "<body>_body_</body>"
            }
        };
        var options = {
            maxWidth: 380,
            maxWidthProcess: 140,
            maxWidthBreakup: 120
        };
        // Clone selected element before manipulating it
        var markup = $(this).clone();

        // Remove hidden elements from the output
        markup.each(function () {
            var self = $(this);
            if (self.is(':hidden'))
                self.remove();
        });
        var images = Array();

        var img = markup.find('img');
        for (var i = 0; i < img.length; i++) {
            // Calculate dimensions of output image
            var w = Math.min(img[i].width, options.maxWidth);
            if (img[i].className.indexOf("Process") != -1)
            {
                w = Math.min(img[i].width, options.maxWidthProcess);
            }
            else if (img[i].className.indexOf("Breakup") != -1)
            {
                w = Math.min(img[i].width, options.maxWidthBreakup);
            }
            var h = img[i].height * (w / img[i].width);
            var canvas = document.createElement("CANVAS");
            canvas.width = w;
            canvas.height = h;
            // Draw image to canvas
            var context = canvas.getContext('2d');
            context.drawImage(img[i], 0, 0, w, h);
            // Get data URL encoding of image
            var uri = canvas.toDataURL("image/jpeg");
            $(img[i]).attr("src", img[i].src);
            img[i].width = w;
            img[i].height = h;
            images[i] = {
                type: uri.substring(uri.indexOf(":") + 1, uri.indexOf(";")),
                encoding: uri.substring(uri.indexOf(";") + 1, uri.indexOf(",")),
                location: $(img[i]).attr("src"),
                data: uri.substring(uri.indexOf(",") + 1)
            };
        }

        // Prepare bottom of mhtml file with image data
        var mhtmlBottom = "\n";
        for (var i = 0; i < images.length; i++) {
            mhtmlBottom += "--NEXT.ITEM-BOUNDARY\n";
            mhtmlBottom += "Content-Location: " + images[i].location + "\n";
            mhtmlBottom += "Content-Type: " + images[i].type + "\n";
            mhtmlBottom += "Content-Transfer-Encoding: " + images[i].encoding + "\n\n";
            mhtmlBottom += images[i].data + "\n\n";
        }
        mhtmlBottom += "--NEXT.ITEM-BOUNDARY--";

        //TODO: load css from included stylesheet
        var styles = "";

        // Aggregate parts of the file together
        var fileContent = static.mhtml.top.replace("_html_", static.mhtml.head.replace("_styles_", styles) + static.mhtml.body.replace("_body_", markup.html())) + mhtmlBottom;

        // Create a Blob with the file contents
        var blob = new Blob([fileContent], {
            type: "application/msword;charset=utf-8"
        });
        saveAs(blob, fileName + ".doc");
    };
})(jQuery);
    } else {
if (typeof jQuery === "undefined") {
    console.error("jQuery Word Export: missing dependency (jQuery)");
}
if (typeof saveAs === "undefined") {
    console.error("jQuery Word Export: missing dependency (FileSaver.js)");
}

}
目前我在网上找到了一种,但是不知道怎么去改我的代码
https://blog.csdn.net/diejiu2046/article/details/101739883


你好,解决了没

可试下这个 https://github.com/fxboy/HtmlExportToWord.js