一、JS方法
1
2
|
<
body
onload
=
"myfunction()"
>
<
html
> <
body
onload
=
"func1();func2();func3();"
> </
body
> </
html
>
|
1
2
3
4
5
|
<script type=
"text/javascript"
>
function
myfun()
{ alert(
"this window.onload"
); }
/*用window.onload调用myfun()*/
window.onload = myfun;
//不要括号
</script>
|
3。
1
2
3
4
5
6
|
<script type=
"text/javascript"
>
window.onload=
function
(){
func1();
func2();
func3(); }
</script>
|
二、JQ方法
1.整个页面的document全部加载完成以后执行。不幸的这种方式不仅要求页面的DOM tree全部加载完成,而且要求所有的外部图片和资源全部加载完成。更不幸的是,如果外部资源,例如图片需要很长时间来加载,那么这个js方法执行感觉就比较慢了。也就是说这是一种最严谨的页面加载完再执行方法的方法。
1
|
window.onload =
function
() { $(
"table tr:nth-child(even)"
).addClass(
"even"
);
//这个是jquery代码 };
|
2.仅只需要加载所有的DOM结构,在浏览器把所有的HTML放入DOM tree之前就执行方法。包括在加载外部图片和资源之前。
1
|
$(document).ready(
function
() { $(
"table tr:nth-child(even)"
).addClass(
"even"
);
//任何需要执行的js特效 });
|
还有一种简写方式
1
|
$(
function
() { $(
"table tr:nth-child(even)"
).addClass(
"even"
);
//任何需要执行的js特效 });
|
转自:http://hi.baidu.com/410838107/item/7754deefcb5f65a9cf2d4f98