DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> Javascript在IE和Firefox浏覽器常見兼容性問題總結
Javascript在IE和Firefox浏覽器常見兼容性問題總結
編輯:關於JavaScript     

本文總結分析了Javascript在IE和Firefox浏覽器常見兼容性問題。分享給大家供大家參考,具體如下:

表單

document.formName.item("itemName")

IE:可以使用document.formName.item("itemName")或document.formName.elements["elementName"]

Firefox:只能使用document.formName.elements["elementName"]

解決方法:統一使用document.formName.elements["elementName"]

集合類對象

IE:可以使用()或[]獲取集合類對象;

Firefox:只能使用[]獲取集合類對象.

解決方法:統一使用[]獲取集合類對象.

自定義屬性

IE:可以使用獲取常規屬性的方法來獲取自定義屬性,也可以使用getAttribute()獲取自定義屬性

Firefox:只能使用getAttribute()獲取自定義屬性.

解決方法:統一通過getAttribute()獲取自定義屬性.

元素獲取

eval("idName")

IE:可以使用eval("idName")或getElementById("idName")來取得id為idName的HTML對象;

Firefox:只能使用getElementById("idName")來取得id為idName的HTML對象。

解決方法:統一用getElementById("idName")來取得id為idName的HTML對象。

命名重復

變量名與某HTML對象ID相同的問題

IE:HTML對象的ID可以作為document的下屬對象變量名直接使用,Firefox下則不能;

Firefox:可以使用與HTML對象ID相同的變量名,IE下則不能。

解決方法:使用document.getElementById("idName")代替document.idName。最好不要取HTML對象ID相同的變量名,以減少錯誤;在聲明變量時,一律加上var,以避免產生歧義。

const

IE:只能使用var關鍵字來定義變量。

Firefox:可以使用const關鍵字或var關鍵字來定義變量。

解決方法:統一使用var關鍵字來定義變量。

input.type

input.type屬性問題

IE:input.type屬性為只讀。

Firefox:input.type屬性為讀寫。

window.event

window.event只能在IE下運行,而不能在Firefox下運行,這是因為Firefox的event只能在事件發生的現場使用。

Firefox:必須從源處加入event作參數傳遞。IE忽略該參數,用window.event來讀取該event。

解決方法:

<script language="javascript"> 
function fun(e) { 
  e = e ? e : (window.event ? window.event : null); 
} 
</script>

event.x與event.y

說明: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.

event.srcElement

IE:event對象有srcElement屬性,但是沒有target屬性;

Firefox:even對象有target屬性,但是沒有srcElement屬性。

解決方法:使用obj(obj = event.srcElement ?event.srcElement :event.target;)來代替IE下的event.srcElement或者Firefox下的event.target。請同時注意event 的兼容性問題。

window.location.href

IE或者Firefox2.0.x:可以使用window.location或window.location.href;

Firefox1.5.x:只能使用window.location

解決方法:使用window.location來代替window.location.href.

模態和非模態窗口

IE:可以通過showModalDialog和showModelessDialog打開模態和非模態窗口

Firefox:不能!

解決方法:直接使用window.open(pageURL, name, parameters)方式打開新窗口。
如果需要將子窗口中的參數傳遞回父窗口,可以在子窗口中使用window.opener來訪問父窗口. 例如:var parWin = window.opener;parWin.document.getElementById("Aqing").value = "Aqing";

frame

以下面的frame為例:

<frame src="xxx.html" id="frameId" name="frameName" />

1.訪問frame對象:

[ ie中返回的為object , ff中會顯示具體的類型 比如: object window ]

IE:使用window.frameId或者window.frameName來訪問這個frame對象. frameId和frameName可以同名。
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中的參數傳回父窗口(注意不是opener,而是parent frame),可以在frme中使用parent來訪問父窗口。例如:parent.document.form1.filename.value="a";

body

IE:body必須在body標簽被浏覽器完全讀入之後才存在。

Firefox:body在body標簽沒有被浏覽器完全讀入之前就存在。

事件委托方法

IE:復制代碼 代碼如下:document.body.onload = inject; //function inject()在這之前已被實現

Firefox:復制代碼 代碼如下:document.body.onload = inject();

父元素

Firefox與IE的父元素(parentElement)的區別

IE:obj.parentElement

Firefox:obj.parentNode

解決方法:因為firefox與IE都支持DOM,因此使用obj.parentNode是不錯選擇.

鼠標指針cursor

cursor:hand VS cursor:pointer

Firefox:不支持hand

IE:支持pointer

解決方法:統一使用pointer

內容文本

innerText在IE中能正常工作。但是innerText在FireFox中卻不行,需用textContent。

解決方法:

if(navigator.appName.indexOf("Explorer") > -1){ 
  document.getElementById('element').innerText = "my text"; 
} else{ 
  document.getElementById('element').textC; 
}

對table的操作

IE,Firefox以及其它浏覽器對於 table 標簽的操作都各不相同,在IE中不允許對table和tr的innerHTML賦值,使用js增加一個tr時,使用appendChild方法也不管用。

解決方法:

//向table追加一個空行: 
var row = otable.insertRow(-1); 
var cell = document.createElement("td"); 
cell.innerHTML = " "; 
cell.className = "a"; 
row.appendChild(cell);

options集合

對select的options集合操作

枚舉元素除了[]外,SelectName.options.item()也是可以的,另外SelectName.options.length, SelectName.options.add/remove都可以在兩種浏覽器上使用。

*注意在 add後賦值元素,否則會失敗。

XMLHTTP

if (window.XMLHttpRequest) { 
  xmlhttp = new XMLHttpRequest(); 
} else if (window.ActiveXObject) { // code for IE 
  xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
} 
if (xmlhttp){ 
  xmlhttp.onreadystatechange = xmlhttpChange; 
  xmlhttp.open("GET",url,true); 
  xmlhttp.send(); 
}

更多關於JavaScript相關內容感興趣的讀者可查看本站專題:《JavaScript錯誤與調試技巧總結》、《JavaScript數學運算用法總結》、《JavaScript中json操作技巧總結》、《JavaScript切換特效與技巧總結》、《JavaScript查找算法技巧總結》、《JavaScript動畫特效與技巧匯總》、《JavaScript數據結構與算法技巧總結》及《JavaScript遍歷算法與技巧總結》

希望本文所述對大家JavaScript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved