




























如何使用JavaScript 建立起IE或Mozilla浏览器相应的请求对象。客户端使用的浏览器是各种各样的。因此也有不同的请求对象。如在Firefox, Netscape, Safari,Opera中是XMLHttpRequest。IE则是Microsoft.XMLHTTP 或 Msxml2.XMLHTTP。
使用AJAX的第一步是检测客户浏览器的类型,根据相应的类型取得request 对象。
/* Initialize a Request object that is already constructed /
function initReq(reqType,url,bool){
/ Specify the function that will handle the HTTP response */
request.onreadystatechange=handleResponse;
/* onreadystatechange监听handleResponse函数。接下来就是打开连接,发送请求……
*/
request.open(reqType,url,bool);
request.send(null);
}
/* Wrapper function for constructing a Request object.
Parameters:
reqType: The HTTP request type such as GET or POST.
url: The URL of the server program.
asynch: Whether to send the request asynchronously or not. */function httpRequest(reqType,url,asynch){
//Mozilla-based browsers
if(window.XMLHttpRequest){ //如果是非IE浏览器
request = new XMLHttpRequest(); //取得对象。
initReq(reqType,url,asynch);
} else if (window.ActiveXObject){ //如果是IE浏览器
request=new ActiveXObject("Msxml2.XMLHTTP");
if (! request){
request=new ActiveXObject("Microsoft.XMLHTTP");
}
if(request){
initReq(reqType,url,asynch);
/* Unlikely to branch here, as IE users will be able to use either one of the
constructors*/
} else {
alert("Your browser does not permit the use "+
"of all of this application's features!");}
} else {
alert("Your browser does not permit the use "+
"of all of this application's features!");}
}
在JavaScript中,还有一些需要注意的内容,在各各浏览器下是有区别的。
1.document.formName.item("itemName") 问题
说明:IE下,可以使用document.formName.item(
"itemName")或document.formName.elements["elementName"];Firefox下,只能使用document.formName.elements[
"elementName"].
说明:IE下,可以使用()或[]获取集合类对象;Firefox下,只能使用[]获取集合类对象.
解决方法:统一使用[]获取集合类对象.
Text2:
document.forms(
Text3:
document.getElementsByName(
说明:IE下,可以使用获取常规属性的方法来获取自定义属性,也可以使用getAttribute()获取自定义属性;Firefox下,只能使用
getAttribute()获取自定义属性.
解决方法:统一通过getAttribute()获取自定义属性.
Text4:
直接获取自定义属性的值
通过getAttribute()获取自定义属性的值
说明:IE下,,可以使用eval(
"idName")或getElementById("idName")来取得id为idName的HTML对象;Firefox下只能使用getElementById(
"idName")来取得id为idName的HTML对象.说明:IE下,HTML对象的ID可以作为document的下属对象变量名直接使用;Firefox下则不能.Firefox下,可以使用与HTML对象ID相同的
变量名;IE下则不能。
解决方法:使用document.getElementById(
变量时,一律加上var,以避免歧义.
-------------------------------------------------
说明:Firefox下,可以使用const关键字或var关键字来定义常量;IE下,只能使用var关键字来定义常量.
解决方法:统一使用var关键字来定义常量.
说明:IE下input.type属性为只读;但是Firefox下input.type属性为读写.
-------------------------------------------------
说明:window.event只能在IE下运行,而不能在Firefox下运行,这是因为Firefox的event只能在事件发生的现场使用.
解决方法:
IE:
说明:IE下,even对象有x,y属性,但是没有pageX,pageY属性;Firefox下,even对象有pageX,pageY属性,但是没有x,y属性.
解决方法:使用mX(mX
说明:IE下,even对象有srcElement属性,但是没有target属性;Firefox下,even对象有target属性,但是没有srcElement属性.
解决方法:使用obj(obj
的event.target.
-------------------------------------------------说明:IE或者Firefox2.
0.x下,可以使用window.location或window.location.href;Firefox1.5.x下,只能使用window.location.
说明:IE下,可以通过showModalDialog和showModelessDialog打开模态和非模态窗口;Firefox下则不能.
解决方法:直接使用window.open(pageURL,name,parameters)方式打开新窗口。
如果需要将子窗口中的参数传递回父窗口,可以在子窗口中使用window.opener来访问父窗口. 例如:
var parWin = window.opener;parWin.document.getElementById(
"Aqing").value = "Aqing"; -------------------------------------------------以下面的frame为例:
<frame src="xxx.html" id="frameId" name="frameName" />(
2)切换frame内容:如果需要将frame中的参数传回父窗口,可以在frme中使用parent来访问父窗口。例如:
parent.document.form1.filename.value
="Aqing";-------------------------------------------------Firefox的body在body标签没有被浏览器完全读入之前就存在;而IE的body则必须在body标签被浏览器完全读入之后才存在.
例如:
Firefox:
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。