解决不能在本地使用JQuery load的方法

    $.ajaxSetup({
        xhr: function () {
            if ("ActiveXObject" in window) {
                return new ActiveXObject("Microsoft.XMLHTTP");
            }
            else {
                return new XMLHttpRequest();
            }
        }
    });
原文地址:https://www.cnblogs.com/aeolia/p/7653044.html