码迷,mamicode.com
首页 > 其他好文 > 详细

Load和Ready

时间:2016-06-16 00:01:55      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:html   jquery   javascript   页面生命周期   

Asp.net开发者都会了解ASP.NET页面运行时,将经历一个生命周期,在生命周期中将执行一系列处理步骤。这些步骤包括初始化、实例化控件、还原和维护状态、运行事件处理程序代码以及进行呈现。


强烈推荐

http://www.codeproject.com/Articles/73728/ASP-NET-Application-and-Page-Life-Cycle

有兄台已经翻译好了而且补充了一些很有用的信息:

http://www.cnblogs.com/edisonchou/p/3958305.html

技术分享


可以看到页面会先经过Reader然后再load


请思考:

有一个test.html页面,引用了另外的两个js文件,想想看会出现什么情况:

a.js

$(document).load(‘test.html‘,function(){
	alert("aaa-load");
});
$(document).ready(function(){
	alert("aaa-ready");
});

b.js

$(document).load(‘test.html‘,function(){
	alert("bbb-load");
});
$(document).ready(function(){
	alert("bbb-ready");
});

test.html

<!DOCTYPE html>
<html lang="en">
<head>

    <meta charset="utf-8">
    <title>test page</title>
    <script src="jquery.js"></script>
    <script src="a.js"></script>
    <script src="b.js"></script>
</head>
<body></body>
</html>


本文出自 “lybing” 博客,请务必保留此出处http://lybing.blog.51cto.com/3286625/1789720

Load和Ready

标签:html   jquery   javascript   页面生命周期   

原文地址:http://lybing.blog.51cto.com/3286625/1789720

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!