首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

让FF跟IE离得更近

2012-11-23 
让FF和IE离得更近给FF添加了IE专有的属性和方法:?????举个例子,在FF中使用currentStyle:?!DOCTYPE html P

让FF和IE离得更近

给FF添加了IE专有的属性和方法:

让FF跟IE离得更近

?

让FF跟IE离得更近

?

让FF跟IE离得更近

?

?

?

举个例子,在FF中使用currentStyle:

?

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml' xml:lang='cn' lang='cn'><head><style type="text/css">#a{width:100px;height:100px;background-color:yellow;}</style><script type="text/javascript"> window.onload=function(){  HTMLElement.prototype.__defineGetter__("currentStyle", function(){return this.ownerDocument.defaultView.getComputedStyle(this,null);});  //上面一行代码就给所有的HTML元素添加了currentStyle属性  var a=document.getElementById("a");  alert("style中的width=""+a.style.width+""\tcurrentStyle中的width=""+a.currentStyle.width+"""); } </script></head><body> <div id="a"></div></body></html>

?

?

本文链接:http://www.blueidea.com/tech/web/2008/5423.asp

热点排行