Home  >  Article  >  Web Front-end  >  JS page automatic loading function (compatible with multiple browsers)_javascript skills

JS page automatic loading function (compatible with multiple browsers)_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:52:561248browse

Test passed: ie6 opera FF chrome

Copy code The code is as follows:

if ( document.all) {
window.attachEvent('onload', arewrite);
window.attachEvent('onload', jsStock);
}
else {
window.addEventListener(' load', arewrite, false);
window.addEventListener('load', jsStock, false);
}


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:jQuery live_jqueryNext article:jQuery live_jquery