Порядок выполнения функции $(function()) в jQuery, когда $(function()) вызывается более одного раза
Код как это:
$(window.document).ready(function () {
window.alert('alert 1');
});
$(function () {
window.alert('alert 2');
});
$(function () {
window.alert('alert 3');
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo2</title>
<script src="jquery-3.1.1.js"></script>
<script src="demo2.js"></script>
</head>
<body>
</body>
</html>
когда я выполняю приведенный выше код, порядок предупреждений на странице иногда таков: оповещение 1, оповещение 2, оповещение 3, а иногда - оповещение 1, оповещение 3, оповещение 2. Может ли кто-нибудь сказать, почему?
1 ответ
На линии 3930
через 3947
JQuery версии 3.1.1 обрабатывает .ready()
вызывается после document
уже загружен. На линии 3938 jQuery.ready
называется внутри setTimeout
без указания продолжительности с прикрепленным комментарием
// Handle it asynchronously to allow scripts the opportunity to delay ready
что бы объяснить, как window.alert('alert 3')
потенциально может быть вызван раньше window.alert('alert 2')
// Catch cases where $(document).ready() is called
// after the browser event has already occurred.
// Support: IE <=9 - 10 only
// Older IE sometimes signals "interactive" too soon
if ( document.readyState === "complete" ||
( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
// Handle it asynchronously to allow scripts the opportunity to delay ready
window.setTimeout( jQuery.ready ); // Line 3938
} else {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", completed );
// A fallback to window.onload, that will always work
window.addEventListener( "load", completed );
}
Следующий стаксник должен воспроизводить результат, описанный OP
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo2</title>
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<script>
$(window.document).ready(function() {
window.alert('alert 1');
});
$(function() {
window.alert('alert 2');
});
$(function() {
window.alert('alert 3');
});
</script>
</head>
<body>
</body>
</html>
Смотрите также completed
функция на линии 3924
// The ready event handler and self cleanup method
function completed() {
document.removeEventListener( "DOMContentLoaded", completed );
window.removeEventListener( "load", completed );
jQuery.ready();
}
Смотрите plnkr http://plnkr.co/edit/C0leBhYJq8CMh7WqndzH?p=preview в версии 1
Изменить, Обновлено
Обеспечить порядок выполнения функций при .ready()
вы можете вернуть обещание от вызова функции, используйте .then()
внутри одного .ready()
вызов для вызова функций, определенных глобально или ранее в .ready()
обработчик.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo2</title>
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<script>
function ready1(wait, index) {
// do stuff
return new Promise(resolve => {
setTimeout(() => {
window.alert('alert ' + index);
resolve(index)
}, wait)
})
.then((i) => console.log(i))
}
function ready2(wait, index) {
// do stuff
return new Promise(resolve => {
setTimeout(() => {
window.alert('alert ' + index);
resolve(index)
}, wait)
})
.then((i) => console.log(i))
}
function ready3(wait, index) {
// do stuff
return new Promise(resolve => {
setTimeout(() => {
window.alert('alert' + index);
resolve(index)
}, wait)
})
.then((i) => console.log(i))
}
$().ready(function() {
ready1(3000, 0)
.then(function() {
return ready2(1500, 1)
})
.then(function() {
return ready3(750, 2)
});
})
</script>
</head>
</html>