js如何獲取給定屬性的屬性值

admin發表於2017-02-10
在一些實際應用中需要取得給定屬性的屬性值,下面就簡單介紹一下如何實現次效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.bottom {
  width: 100px;
  height: 100px;
  background-color: green;
}
</style>
<script type="text/javascript">
window.onload = function () {
  alert(document.getElementsByTagName("div")[0].getAttribute("class"));
}
</script>
</head>
<body>
  <div class="bottom"></div>
</body>
</html>

以上程式碼可以獲取div的class屬性的屬性值。上面的程式碼中使用了getAttribute()函式,此函式的引數是一個字串,用來規定要獲取值的屬性名稱。

相關文章