<html>
<body>
<h1>item() 方法</h1>
<p>单击该按钮可返回 "ex1" 元素的样式声明中的第一个 CSS 属性名称:</p>
<button onclick="myFunction()">试一试</button>
<div id="ex1" style="color:blue; font-family:monospace;">Some text</div>
<script>
function myFunction() {
var style = document.getElementById('ex1').style;
var propname = style.item(0);
alert(propname);
}
</script>
</body>
</html>