js中onload调用两种方法,先加载js再加载页面和先加载页面后加载js
window.οnlοad=ShowMessage();
先页面加载过程,直接调用ShowMessage(); 方法
2.
window.οnlοad=function(){ShowMessage();}
先加载页面,页面加载完毕再调用ShowMessage()
js中onload调用两种方法,先加载js再加载页面和先加载页面后加载js
window.οnlοad=ShowMessage();
先页面加载过程,直接调用ShowMessage(); 方法
2.
window.οnlοad=function(){ShowMessage();}
先加载页面,页面加载完毕再调用ShowMessage()