“HTML -тег запускается только после загрузки всей страницы” Ответ

JavaScript, который выполняется после загрузки страницы

//two ways of executing JS code after page is loaded, use "DOMContentLoaded" when able

document.addEventListener("DOMContentLoaded", function(){
    //dom is fully loaded, but maybe waiting on images & css files
});

window.addEventListener("load", function(){
    //everything is fully loaded, don't use me if you can use DOMContentLoaded
});
Grepper

HTML -тег запускается только после загрузки всей страницы

//put your JS code in
document.onload = function {
	// the code here will run when all the HTML is loaded (but the css and the images may miss)
}

// or in
window.onload = function {
  // the code here will run when the whole page is loaded (including css and images)
}
Thoughtful Trout

HTML -тег запускается только после загрузки всей страницы

<body onload="script();">
<!-- will call the function script when the body is load -->
Thoughtful Trout

Ответы похожие на “HTML -тег запускается только после загрузки всей страницы”

Вопросы похожие на “HTML -тег запускается только после загрузки всей страницы”

Больше похожих ответов на “HTML -тег запускается только после загрузки всей страницы” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования