Jump to content
  • 0

как обеспечить асинхронную загрузку jQuery и jQuery UI ?


Светлана Г.
 Share

Question

11 answers to this question

Recommended Posts

  • 0
 var scripts = ["jquery.js", "jqueryUi.js"];

        var src;

        var script;

        var pendingScripts = [];

        var firstScript = document.scripts[0];

        function stateChange() {

            var a;

            while (pendingScripts[0] && pendingScripts[0].readyState == "loaded") {

                a = pendingScripts.shift();

                a.onreadystatechange = null;

                firstScript.parentNode.insertBefore(a, firstScript)

            }

        }

        while (src = scripts.shift()) {

            if ("async" in firstScript) {

                script = document.createElement("script");

                script.async = false;

                script.src = src;

                document.head.appendChild(script)

            } else {

                if (firstScript.readyState) {

                    script = document.createElement("script");

                    pendingScripts.push(script);

                    script.onreadystatechange = stateChange;

                    script.src = src

                } else {

                    document.write('<script src="' + src + '" defer><\/script>')

                }

            }

        }

 

 

В scripts передаете массив путей к скриптам,

Edited by Galaxy
Link to comment
Share on other sites

  • 0

Этот вопрос интересовал моего коллегу. Единственное, что он сказал, что ответившие не до конца понимают проблему.

 

Ни в коем случае никого не хотела обидеть!

Edited by Светлана Г.
Link to comment
Share on other sites

  • 0
Объяснение вот:

Есть синхронная загрузка скриптов, которая происходит при

<script src=””></script>

В этом случае браузер ждет, пока скрипт загрузится и только после этого выполняет далее и рендерит все свое содержимое.

 

А есть асинхронная, которая включается

<script src=”” async></script>

 

В этом случае браузер НЕ ЖДЕТ загрузки, а грузит все параллельно и выполняет рендеринг и др. скрипты.

 

Но с jQuery такой фокус не проходит. jQuery, и особенно jQuery UI, не успевают загрузиться к моменту  выполнения скриптов. Это и называется «гонки».

Все рецепты, предложенные ранее, фактически загружали скрипты СИНХРОННО, а суть вопроса была КАК АСИНХРОННО грузить jQuery и UI.

 

Edited by Светлана Г.
Link to comment
Share on other sites

  • 0

Вы наверное невнимательно прочитали документацию к require.js. Там есть такое понятие как dependencies (зависимости), он грузит все скрипты асинхронно  и по окончании загрузки вызывает коллбэк.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy