多个版本的html2canvas

时间:2019-02-04 04:51:06

标签: javascript npm html2canvas

我将html2canvas的版本从v0.5.0更新到了v1.0.0,然后某些功能在iOS上停止工作。

因此,我想在iOS上使用v0.5.0,在其他设备上使用v1.0.0。

如何在我的Web应用程序上拥有并使用两个版本的html2canvas?

1 个答案:

答案 0 :(得分:0)

尝试编写自定义函数。

 (function (w, d) {
        "use strict";
        var h = d.getElementsByTagName("head")[0],
            s = d.createElement("script");
        w.d3 = null;
        s.src ="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.5.0/html2canvas.min.js";
        s.onload = function () {
            w.d3_3_5_3 = w.d3;
            w.d3 = undefined;
            s = d.createElement("script");
            s.src ="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.5.0/html2canvas.min.js";
            s.onload = function () {
                w.d3_3_5_4 = w.d3;
                w.d3 = undefined;
                s = d.createElement("script");
                s.src = "https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.0.0/html2canvas.min.js";
                s.onload = function () {
                    w.d3_3_5_5 = w.d3;
                    w.d3 = undefined;
                };
                h.appendChild(s);
            };
            h.appendChild(s);
        };
        h.appendChild(s);
    }(window, document));

希望这会有所帮助。!