无为

无为则可为,无为则至深!

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  190 Posts :: 291 Stories :: 258 Comments :: 0 Trackbacks
Ajax 入门就不说了~确实比较简单。

(1)xmlhttp.onreadystatechange = updatepage不要写成xmlhttp.onreadystatechange = updatepage(...)
这样会报类型不匹配的错误。

(2)XMLHTTPRequest and XMLHTTP
XMLHTTPRequest是IE5.0及以上版本。
xmlhttp = new ActiveXObject("Microsoft.XMLHTTPREQUEST")
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
如果xmlhttp.responseText值为空可以换一下实例化方式。

(3)
request = new ActiveXObject("Microsoft.XMLHTTP");
if (request)
{
    request.onreadystatechange = CallbackHandler;
    request.open("GET", URL, true);
    request.send();
}

在Firefox浏览器中必须写成
request.send(null);

(4)
http://weblogs.asp.net/mschwarz/archive/2005/11/02/429285.aspx

(5)
XmlHttpRequest not working


凡是有该标志的文章,都是该blog博主Caoer(草儿)原创,凡是索引、收藏
、转载请注明来处和原文作者。非常感谢。

posted on 2006-05-25 22:27 草儿 阅读(224) 评论(0)  编辑  收藏 所属分类: ajax

只有注册用户登录后才能发表评论。


网站导航: