年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- e_e
- javashop
- sam123456gz
- zysnba
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- Xeden
- jh108020
- johnsmith9th
- zhanjia
- zxq_2017
- jbosscn
- forestqqqq
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- sichunli_030
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- lich0079
- jveqi
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- lxguy
- zhangjijun
最新文章列表
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
测试情况下,有的报这个错,有的不报。经查询资料后,可归纳以下原因。
...