IE和Firefox在JavaScript方面的兼容性

1.document.formName.item("itemName") 问题
<script language="javascript" type="text/javascript"> function gotoSubmit1_1() { alert(document.form1_name.item("text1").value); } function gotoSubmit1_2() { alert(document.form1_name.elements["text1"].value); } </script>
说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用document.formName.elements["elementName"].
解决方法:统一使用document.formName.elements["elementName"]. Text1:
document.formName.item("itemName")
document.formName.elements["elementName"]
<!--2.集合类对象问题-->2.集合类对象问题
<script language="javascript" type="text/javascript"> function gotoSubmit2_1() { alert(document.forms("form2_name").text2.value); } function gotoSubmit2_2() { alert(document.forms["form2_name"].text2.value); } function gotoSubmit2_3() { alert(document.getElementsByName("text3")(0).value); } function gotoSubmit2_4() { alert(document.getElementsByName("text3")[0].value); } </script>
说明:IE下,可以使用()或[]获取集合类对象;Firefox下,只能使用[]获取集合类对象.
解决方法:统一使用[]获取集合类对象. Text2:
document.forms("formName")
document.forms["formName"]

Text3:
document.getElementsByName("inputName")(0)
document.getElementsByName("inputName")[0]
<!--3.自定义属性问题-->3.自定义属性问题
<script language="javascript" type="text/javascript"> function gotoSubmit3_1() { alert(document.form3_name.text4.Blog_of_Aqing); } function gotoSubmit3_2() { alert(document.form3_name.text4.getAttribute("Blog_of_Aqing")); } </script>
说明:IE下,可以使用获取常规属性的方法来获取自定义属性,也可以使用getAttribute()获取自定义属性;Firefox下,只能使用getAttribute()获取自定义属性.
解决方法:统一通过getAttribute()获取自定义属性. Text4:
直接获取自定义属性的值
通过getAttribute()获取自定义属性的值
<!--4.eval("idName")问题-->4.eval("idName")问题
<script language="javascript" type="text/javascript"> function gotoSubmit4_1() { alert(eval("text_id5").value); } function gotoSubmit4_2() { alert(document.getElementById("text_id5").value); } </script>
说明:IE下,,可以使用eval("idName")或getElementById("idName")来取得id为idName的HTML对象;Firefox下只能使用getElementById("idName")来取得id为idName的HTML对象.
解决方法:统一用getElementById("idName")来取得id为idName的HTML对象. Text5:
eval("idName")
document.getElementById("itemId")
<!--5.变量名与某HTML对象id相同的问题-->5.变量名与某HTML对象ID相同的问题

说明:IE下,HTML对象的ID可以作为document的下属对象变量名直接使用;Firefox下则不能.Firefox下,可以使用与HTML对象ID相同的变量名;IE下则不能。
解决方法:使用document.getElementById("idName")代替document.idName.最好不要取HTML对象ID相同的变量名,以减少错误;在声明变量时,一律加上var,以避免歧义.
<!--6.const问题-->6.const问题
<script language="javascript" type="text/javascript"> function gotoSubmit6_1() { var constVar1="Aqing"; alert(constVar1); /* 上面代码在IE和Firefox下均有效,下面这段代码仅在Firefox下有效 注意:上下两段代码不能同时存在,否则在IE和Firefox下均失效! */ /* const constVar2="Aqing"; alert(constVar2); */ } </script>
说明:Firefox下,可以使用const关键字或var关键字来定义常量;IE下,只能使用var关键字来定义常量.
解决方法:统一使用var关键字来定义常量.
<!--7.input.type属性问题-->7.input.type属性问题
<script language="javascript" type="text/javascript"> function gotoSubmit7_1() { if(document.form7_name.InputName.type=="text") { document.form7_name.InputName.type="button"; document.form7_name.InputName.value="Input Type:"+document.form7_name.InputName.type; return; } if(document.form7_name.InputName.type=="button") { document.form7_name.InputName.type="text"; document.form7_name.InputName.value="Input Type:"+document.form7_name.InputName.type; return; } } </script>
说明:IE下input.type属性为只读;但是Firefox下input.type属性为读写.
<!--8.window.event问题-->8.window.event问题
<script language="javascript" type="text/javascript"> function gotoSubmit8_1() { alert(window.event); //use window.event } function gotoSubmit8_2(evt) { evt=evt?evt:(window.event?window.event:null); alert(evt); //use evt } </script>
说明:window.event只能在IE下运行,而不能在Firefox下运行,这是因为Firefox的event只能在事件发生的现场使用.
解决方法:
IE:
<input name="Button8_1" type="button" value="IE" οnclick="javascript:gotoSubmit8_1()"/>
...
<script language="javascript">
function gotoSubmit8_1() {
...
alert(window.event); //use window.event
...
}
</script>
IE&Firefox:
<input name="Button8_2" type="button" value="IE" οnclick="javascript:gotoSubmit8_2(event)"/>
...
<script language="javascript">
function gotoSubmit8_2(evt) {
...
evt=evt?evt:(window.event?window.event:null);
alert(evt); //use evt
...
}
</script>


<!--9.event.x与event.y问题-->9.event.x与event.y问题
<script language="javascript" type="text/javascript"> function gotoSubmit9_1(evt) { evt=evt?evt:(window.event?window.event:null); alert(evt.x); } function gotoSubmit9_2(evt) { evt=evt?evt:(window.event?window.event:null); alert(evt.pageX); } function gotoSubmit9_3(evt) { evt=evt?evt:(window.event?window.event:null); mX = evt.x ? evt.x : evt.pageX; alert(mX); } </script>
说明:IE下,even对象有x,y属性,但是没有pageX,pageY属性;Firefox下,even对象有pageX,pageY属性,但是没有x,y属性.
解决方法:使用mX(mX = event.x ? event.x : event.pageX;)来代替IE下的event.x或者Firefox下的event.pageX.


<!--10.event.srcElement问题-->10.event.srcElement问题
<script language="javascript" type="text/javascript"> function gotoSubmit10_1(evt) { evt=evt?evt:(window.event?window.event:null); alert(evt.srcElement); } function gotoSubmit10_2(evt) { evt=evt?evt:(window.event?window.event:null); alert(evt.target); } function gotoSubmit10_3(evt) { evt=evt?evt:(window.event?window.event:null); var obj; obj = evt.srcElement ? evt.srcElement : evt.target; alert(obj); } </script>
说明:IE下,even对象有srcElement属性,但是没有target属性;Firefox下,even对象有target属性,但是没有srcElement属性.
解决方法:使用obj(obj = event.srcElement ? event.srcElement : event.target;)来代替IE下的event.srcElement或者Firefox下的event.target.


<!--11.window.location.href问题-->11.window.location.href问题
<script language="javascript" type="text/javascript"> function gotoSubmit11_1() { window.location.href="http://esoft.bokee.com/"; } function gotoSubmit11_2() { window.location="http://esoft.bokee.com/"; } </script>
说明:IE或者Firefox2.0.x下,可以使用window.location或window.location.href;Firefox1.5.x下,只能使用window.location.
解决方法:使用window.location来代替window.location.href.

<!--12.模态和非模态窗口问题-->12.模态和非模态窗口问题

说明:IE下,可以通过showModalDialog和showModelessDialog打开模态和非模态窗口;Firefox下则不能.
解决方法:直接使用window.open(pageURL,name,parameters)方式打开新窗口。

如果需要将子窗口中的参数传递回父窗口,可以在子窗口中使用window.opener来访问父窗口. 例如:var parWin = window.opener; parWin.document.getElementById("Aqing").value = "Aqing";


<!--13.frame问题-->13.frame问题

以下面的frame为例:
<frame src="xxx.html" id="frameId" name="frameName" />

(1)访问frame对象:
IE:使用window.frameId或者window.frameName来访问这个frame对象.
Firefox:只能使用window.frameName来访问这个frame对象.
另外,在IE和Firefox中都可以使用window.document.getElementById("frameId")来访问这个frame对象.

(2)切换frame内容:
在IE和Firefox中都可以使用window.document.getElementById("testFrame").src = "xxx.html"或window.frameName.location = "xxx.html"来切换frame的内容.

如果需要将frame中的参数传回父窗口,可以在frme中使用parent来访问父窗口。例如:parent.document.form1.filename.value="Aqing";


<!--14.body问题-->14.body问题

Firefox的body在body标签没有被浏览器完全读入之前就存在;而IE的body则必须在body标签被浏览器完全读入之后才存在.

例如:
Firefox:
<body>
<script type="text/javascript">
document.body.onclick = function(evt){
evt = evt || window.event;
alert(evt);
}
</script>
</body>
IE&Firefox:
<body>
</body>
<script type="text/javascript">
document.body.onclick = function(evt){
evt = evt || window.event;
alert(evt);
}
</script>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值