1. 程式人生 > >JavaScript獲取非行間樣式

JavaScript獲取非行間樣式

als .com sig char type 查看 lan java element

<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
<style type="text/css">
    #div1 {
        width:100px;
        height:100px;
        background: red;
    }
</style>
</head>

<body>
<div id="div1"></div>
<script type="text/javascript"
> var odiv=document.getElementById(div1); if(odiv.currentStyle){ alert(odiv.currentStyle.backgroundColor) } else { alert(getComputedStyle(odiv,false).backgroundColor); } </script> </body> </html>

查看原文

JavaScript獲取非行間樣式