非行间的兼容问题
2017-02-16 本文已影响0人
唐墨痕
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#odiv{
background: red;
height: 200px
}
</style>
</head>
<body>
<div id="odiv" style="width: 200px;"></div>
</body>
<script>
window.onload=function () {
var oDiv=document.getElementById('odiv');
oDiv.onclick=function () {
//未定义属性是undefined
//未定义函数会报错
if (oDiv.currentStyle){//兼容低版本浏览器
alert(oDiv.currentStyle.height);
}else{
alert(getComputedStyle(oDiv,false).height);
//高版本浏览器 false 兼容低版本火狐
}
}
};
</script>
</html>