我有多个需要使用body onload事件的javasripts
它应该是简单的解决方案 - 只需添加所有事件,如下所示:
<body onload="showContent();
randomImages();
placeIt();
showIt();
preloadImgs();
initialize()">
但当然生活并非如此简单......
出于某种原因某些脚本需要排在第一位。因此,如果我先放置showContent();
,则不会执行randomimages,反之亦然。
我也尝试用这样的脚本替换onload事件
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", showContent, false );
else if ( typeof window.attachEvent != "undefined" ) {
window.attachEvent( "onload", showContent );
}
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
showContent();
};
}
else
window.onload = showContent;
}
到目前为止,我没有解决这场冲突的办法。有人有好主意吗?
答案 0 :(得分:0)
为什么不创建另一个包含所有这些函数的函数,然后在加载时调用该函数?这假设您的函数与其他函数没有某些依赖关系。
showContent();randomImages();placeIt();showIt();preloadImgs();initialize()
可以在更有条理的位置:
function Init()
{
showContent(); // if this errors out, execution for the rest stops
randomImages();
placeIt();
showIt();
preloadImgs();
initialize();
}
答案 1 :(得分:0)