本月博客排行
-
第1名
kaizi1992 -
第2名
wy_19921005 -
第3名
arpenker - hanbaohong
- jh108020
- silverend
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - wy_19921005
- benladeng5225
- vipbooks
- kaizi1992
- e_e
- arpenker
- tanling8334
- javashop
- sam123456gz
- zysnba
- fantaxy025025
- xiangjie88
- lemonhandsome
- wallimn
- ganxueyun
- Xeden
- zhanjia
- wangchen.ily
- xyuma
- jh108020
- johnsmith9th
- zxq_2017
- jbosscn
- forestqqqq
- daizj
- ajinn
- xpenxpen
- 喧嚣求静
- silverend
- kingwell.leng
- kristy_yy
- lchb139128
- jveqi
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- chenqisdfx
- bosschen
- zhangjijun
- lyndon.lin
- sunnylocus
- lyj86
- paulwong
最新文章列表
Ajax技术---原理与知识点
Ajax(Asynchronous JavaScript + XML 的简写)能够向服务器请求额外的数据而无须卸载页面,可以带来更好的用户体验。
Ajax技术的核心是XMLHttpRequest对象(简称XHR),XHR能够以异步方式从服务器取得更多信息,意味着用户单击后,可以不必刷新页面也能取得新数据。也就是说,可以使用XHR对象取得新数据,然后再通过DOM将新数据插入到页面中。
使 ...
xhr readystate、status以及ajax中时间执行顺序
(1)XMLHttpRequest().readyState的五种状态详解 .
在《Pragmatic AJAX中文问题 A Web 2.0 Primer 》中偶然看到对readyStae状态的介绍,感觉这个介绍很实在,摘译如下: 0: (Uninitialized) the send( ) method has not yet been invoked. 1: (Loading) the ...
用document.onreadystatechange的方法来监听页面状态改变
用document.onreadystatechange的方法来监听状态改变,然后用document.readyState == “complete”判断是否加载完成代码如下:document.onreadystatechange = subSomething;//当页面加载状态改变的时候执行这个方法.function subSomething(){ if(document.readySt ...
xmlHttp的readyState与status参数详解
——————————————————————————————————————
AJAX中有检查状态码的——
xmlHttp.onreadystatechange=handleStateChange;
function handleStateChange()
{
if(xmlHttp.readyState==4)
{
if(xmlHttp.status==200)
{
...
readyState总结
关于readyState的状态:
0 未初始化
1 载入
2 载入完成
3 交互
4 完成
扩展阅读:
http://blog.csdn.net/miyao16/article/details/5138808
IE 中"HTML Parsing Error:Unable to modify the parent container element before the
错误:
IE
中"HTML
Parsing Error:Unable to modify the parent container element before the child
element is closed"
现象:
同事之间几个IE
测试情况下,有的报这个错,有的不报。经查询资料后,可归纳以下原因。
...