在窗口重新调整大小时重新加载JS文件

时间:2014-10-09 09:59:29

标签: javascript resize window reload

如何在窗口调整大小上重新加载单个JS文件?每次调整窗口大小时我只需要重新加载一个JS文件,这样就可以重置JS文件。很久以前我在这里找到了一个剧本,但我找不到他了。

<script src="js/scripts.js" type="text/javascript"></script>

Thnx gr Pascal

3 个答案:

答案 0 :(得分:1)

我没有看到jQuery标记,所以其他回复可能不会为你工作。

您基本上需要捕获窗口调整大小事件,该事件发生在(实际上)浏览器调整大小的每个像素上。这意味着您需要使用setTimeout等待完成的调整大小(否则,您将为每个调整大小重新加载脚本1000x)。然后,您可以将脚本的源设置为同一文件,附加一个强制非缓存刷新的时间戳。

以下是我如何实现这一点:(http://jsfiddle.net/gbez11h2/

HTML:

<script id="scriptToReload" type="text/javascript" src="path/to/script.js">

使用Javascript:

;(function (w, d) {
    "use strict";

    var timeout = null,
        scriptEl = d.getElementById('scriptToReload'),
        scriptSrc = scriptEl.src,
        delay = 500; // How long to wait (in ms) before deciding resize is complete

    w.onresize = function () {
        // Clear previous timeout to indicate resizing is still occurring
        w.clearTimeout(timeout);

        timeout = w.setTimeout(function () {
            // Resizing is (probably) done, now we can reload the script
            // Start by destroying previous script element
            scriptEl.parentElement.removeChild(scriptEl);

            // Now we recreate the same element, with a timestamp cache-buster
            scriptEl = d.createElement('script');
            scriptEl.type = 'text/javascript';
            scriptEl.src = scriptSrc + '?_=' + (new Date().getTime());

            // And insert it into the DOM to be (re-)loaded
            d.getElementsByTagName('head')[0].appendChild(scriptEl);
        }, delay);
    };
})(window, document);

请注意,Javascript需要先查看原始<script>定义,或放入window.onload函数。

答案 1 :(得分:0)

您可以尝试附加新的脚本标记:

$(function(){
$('button').click(function(){
    var script = document.createElement( 'script' );
    script.type = 'text/javascript';
    script.src = 'https://**.js';
    $("head").append( script );

});

})

答案 2 :(得分:0)

像这样:

function bind()
        {
            $(window).resize(function () { $("#scriptToReload").attr("src",   "reloadedScript.js"); });
        }

$(document).ready( function () { bind();} );