1. document.form.item 问题
(1)现有问题:
现有代码中存在许多 document.formName.item("itemName") 这样的语句,不能在 Fx 下运行
(2)解决方法:
改用 document.formName.elements["elementName"]
(3)其它
参见 2
2. 集合类对象问题
(1)现有问题:
现有代码中许多集合类对象取用时使用 (),IE 能接受,Fx 不能。
(2)解决方法:
改用 [] 作为下标运算。如:document.forms("formName") 改为 document.forms["formName"]。
又如:document.getElementsByName("inputName")(1) 改为 document.getElementsByName("inputName")[1]
(3)其它
3. window.event
(1)现有问题:
使用 window.event 无法在 Fx 上运行
(2)解决方法:
Fx 的 event 只能在事件发生的现场使用,此问题暂无法解决。可以这样变通:
原代码(可在IE中运行):
代码:
<input type="button" name="someButton" value="提交" onclick="javascript:gotoSubmit()"/>
...
<script language="javascript">
function gotoSubmit() {
...
alert(window.event); // use window.event
...
}
</script>
新代码(可在IE和Fx中运行):
代码:
<input type="button" name="someButton" value="提交" onclick="javascript:gotoSubmit(event)"/>
...
<script language="javascript">
function gotoSubmit(evt) {
evt = evt ? evt : (window.event ? window.event : null);
...
alert(evt); // use evt
...
}
</script>
此外,如果新代码中第一行不改,与老代码一样的话(即 gotoSubmit 调用没有给参数),则仍然只能在IE中运行,但不会出错。所以,这种方案 tpl 部分仍与老
代码兼容。
4. HTML 对象的 id 作为对象名的问题
(1)现有问题
在 IE 中,HTML 对象的 ID 可以作为 document 的下属对象变量名直接使用。在 Fx 中不能。
(2)解决方法
用 getElementById("idName") 代替 idName 作为对象变量使用。
5. 用idName字符串取得对象的问题
(1)现有问题
在IE中,利用 eval(idName) 可以取得 id 为 idName 的 HTML 对象,在Fx 中不能。
(2)解决方法
用 getElementById(idName) 代替 eval(idName)。
6. 变量名与某 HTML 对象 id 相同的问题
(1)现有问题
在 Fx 中,因为对象 id 不作为 HTML 对象的名称,所以可以使用与 HTML 对象 id 相同的变量名,IE 中不能。
(2)解决方法
在声明变量时,一律加上 var ,以避免歧义,这样在 IE 中亦可正常运行。
此外,最好不要取与 HTML 对象 id 相同的变量名,以减少错误。
(3)其它
参见 问题4
7. event.x 与 event.y 问题
(1)现有问题
在IE 中,event 对象有 x, y 属性,Fx中没有。
(2)解决方法
在Fx中,与event.x 等效的是 event.pageX。但event.pageX IE中没有。
故采用 event.clientX 代替 event.x。在IE 中也有这个变量。
event.clientX 与 event.pageX 有微妙的差别(当整个页面有滚动条的时候),不过大多数时候是等效的。
如果要完全一样,可以稍麻烦些:
mX = event.x ? event.x : event.pageX;
然后用 mX 代替 event.x
(3)其它
event.layerX 在 IE 与 Fx 中都有,具体意义有无差别尚未试验。
8. 关于frame
(1)现有问题
在 IE中 可以用window.testFrame取得该frame,Fx中不行
(2)解决方法
在frame的使用方面Fx和ie的最主要的区别是:
如果在frame标签中书写了以下属性:
<frame src="xx.htm" id="frameId" name="frameName" />
那么ie可以通过id或者name访问这个frame对应的window对象
而Fx只可以通过name来访问这个frame对应的window对象
例如如果上述frame标签写在最上层的window里面的htm里面,那么可以这样访问
ie: window.top.frameId或者window.top.frameName来访问这个window对象
Fx: 只能这样window.top.frameName来访问这个window对象
另外,在Fx和ie中都可以使用window.top.document.getElementById("frameId")来访问frame标签
并且可以通过window.top.document.getElementById("testFrame").src = 'xx.htm'来切换frame的内容
也都可以通过window.top.frameName.location = 'xx.htm'来切换frame的内容
关于frame和window的描述可以参见bbs的‘window与frame’文章
以及/test/js/test_frame/目录下面的测试
----adun 2004.12.09修改
9. 在Fx中,自己定义的属性必须getAttribute()取得
10.在Fx中没有 parentElement parement.children 而用
parentNode parentNode.childNodes
childNodes的下标的含义在IE和Fx中不同,Fx使用DOM规范,childNodes中会插入空白文本节点。
一般可以通过node.getElementsByTagName()来回避这个问题。
当html中节点缺失时,IE和Fx对parentNode的解释不同,例如
<form>
<table>
<input/>
</table>
</form>
Fx中input.parentNode的值为form, 而IE中input.parentNode的值为空节点
Fx中节点没有removeNode方法,必须使用如下方法 node.parentNode.removeChild(node)
11.const 问题
(1)现有问题:
在 IE 中不能使用 const 关键字。如 const constVar = 32; 在IE中这是语法错误。
(2)解决方法:
不使用 const ,以 var 代替。
12. body 对象
Fx的body在body标签没有被浏览器完全读入之前就存在,而IE则必须在body完全被读入之后才存在
13. url encoding
在js中如果书写url就直接写&不要写&例如var url = 'xx.jsp?objectName=xx&objectEvent=xxx';
frm.action = url那么很有可能url不会被正常显示以至于参数没有正确的传到服务器
一般会服务器报错参数没有找到
当然如果是在tpl中例外,因为tpl中符合xml规范,要求&书写为&
一般Fx无法识别js中的&
14. nodeName 和 tagName 问题
(1)现有问题:
在Fx中,所有节点均有 nodeName 值,但 textNode 没有 tagName 值。在 IE 中,nodeName 的使用好象
有问题(具体情况没有测试,但我的IE已经死了好几次)。
(2)解决方法:
使用 tagName,但应检测其是否为空。
15. 元素属性
IE下 input.type属性为只读,但是Fx下可以修改
16. document.getElementsByName() 和 document.all[name] 的问题
(1)现有问题:
在 IE 中,getElementsByName()、document.all[name] 均不能用来取得 div 元素(是否还有其它不能取的元素还不知道)。
转载泛滥,原文出处难以考证。
分享到:
相关推荐
在Web前端开发中,识别用户使用...然而,随着IE浏览器逐渐被淘汰,开发者也应考虑逐步停止对IE的支持,转向更现代的浏览器,如Chrome、Firefox、Safari和Edge等,它们对Web标准的遵循更加一致,能提供更好的用户体验。
Compatibility: supports most mainstream browsers, such as IE, Firefox, Google, 360 and so on. Program PHP version: php+myslq+apache+div+css. PHP version of the adaptive Web site model development, ...
• Wide cross-browser compatibility, IE6+, firefox1.5+, opera9+, safari3+ and Google Chrome. • Full API Documentation with tons of samples. • Ever Increasing Code Snippets. • Drag&Drop GUI builder ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and ...
* Supports native events for Firefox versions 31 (current ESR), and 24 (immediately previous ESR). Native event support has been discontinued for versions of Firefox later than 33. * Removed ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and performance ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and performance ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and performance ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and performance ...
Studio for ASP.NET Wijmo controls support these popular browsers: IE6+, Firefox 3+, Safari 3+, and Chrome. Unmatched Performance In modern Web development, client-side download and performance ...
CCleaner的体积小,运行速度极快,可以对临时文件夹、历史记录、回收站等进行垃圾清理,并可对注册表进行垃圾项扫描、清理,附带软件卸载功能,同时支持IE、Firefox、Chrome。它可以让您的Windows运行更快、效率更高...
The other set of tests run Firefox, Chrome and Internet Explorer with webdriver. The selenium standalone server (runs on Java) is required for these tests and can be downloaded from here. They capture...
HTML5 and CSS3.The product supports all major desktop and mobile web browsers - Internet Explorer 7.0+, Firefox 2.0+, Safari 3.0+, Opera 9.0+, Google Chrome, IE Mobile, Android, Opera Mini, Mobile ...
例如,Firefox支持`scrollbar-color`和`scrollbar-width`属性,但这些属性仅在Firefox 64+版本中可用。 **3. JavaScript Solutions** 当纯CSS无法满足需求时,可以借助JavaScript库,如`perfect-scrollbar`或`...
- Corrected issue with playlist text not rendering the color correctly on in Firefox. v2.0.15 (Nov. 20, 2009) - Added m4v extension to video list. v2.0.14 (Nov. 12, 2009) - If wimpyApp contains a "?...
良好的兼容性意味着代码可以在大部分主流浏览器上正常运行,包括IE、Firefox、Chrome、Safari等。 6. **CSS样式(Cascading Style Sheets)**: 虽然描述中主要提及了JavaScript,但CSS同样扮演着重要的角色。CSS...