我尝试使用 getElementsByClassName 方法打印特定 CSS 类中的属性值列表,如下所示:
<html>
<head>
<style>
.toto {
width:200px;
height:50px;
background-color:red;
}
</style>
</head>
<body>
<div id="lol" class="toto"></div>
<script language="javascript" type="text/javascript">
var toto = document.getElementsByClassName('toto');
if (toto) {
for (int i; i < toto.length; i++)
document.write(toto[i]);
}
</script>
</body>
</html>
但在所有情况下,toto.length = 1。我想打印值“200px”、“50px”和“red”。有人可以帮助我吗?非常感谢您的帮助。