1. 程式人生 > >列舉IE與其他瀏覽器不一樣的特性?

列舉IE與其他瀏覽器不一樣的特性?

2017年09月16日 20:52:58 michael8512 閱讀數:1347 標籤: firefox火狐瀏覽器ie相容更多

1)IE支援currentStyle,Firefox使用getComputStyle;

2)IE使用innerText,FireFox使用textContent;

3)濾鏡方面:IE:filter:alpha(opacity= num);Firefox:-moz-opacity:num;

4)事件方面:IE:attachEvent:火狐是addEventListener;

5)滑鼠位置:IE是event.clientX;火狐是event.pageX;

6)IE使用event.srcElement;Firefox使用event.target;

7)IE中消除list的原點僅需margin:0即可達到最終效果;FIrefox需要設定margin:0;padding:0以及list-style:none;