原生javascript獲取下一級子元素程式碼例項

antzone發表於2017-03-29

本章節介紹一下如何利用原生的javascript獲取當前元素的下一級子元素。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#box{
  width:300px;
  height:100px;
  background:#CCC;
}
#box div{
  width:100px;
  height:50px;
  background:red;
  margin:0px auto;
}
</style>
<script type="text/javascript">
window.onload=function(){
  var obox=document.getElementById("box");
  var childrens=obox.childNodes;
  childrens[1].style.border="5px solid blue";
}
</script>
</head>
<body>
<div id="box">
  <div>softwhy.com</div>
</div>
</body>
</html>

上面你的程式碼可以設定子元素的邊框,之所以childrens集合用索引值1才能獲取子div元素,是因為childNodes屬性也會將空格和換行看做一個文字節點。關於childNodes屬性可以參閱js childNodes一章節。

相關文章