jQuery獲取當前li元素的下一個元素

antzone發表於2017-04-06

本章節介紹一下如何獲取當前li元素的下一個元素。

程式碼非常的簡單,下面直接給出。

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css"> 
#items{ 
  width:900px; 
  height:auto; 
  margin:0 auto; 
  padding:5px 0; 
  clear:both; 
} 
#items ul, #items li{ 
  list-style:none; 
} 
#items li{ 
  width:500px; 
  height:28px; 
  text-align:left; 
  padding-left: 0px; 
  line-height:28px; 
  border-bottom:dashed 1px #CCC;
  cursor:pointer;
} 
</style> 
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> 
<script type="text/javascript">
$(document).ready(function(){
  $("#bt").click(function(){
    $("li").eq(1).next().css("color","blue");
  })
});
</script> 
</head> 
<body> 
<div id="items"> 
  <ul> 
    <li>螞蟻部落歡迎您,只有努力奮鬥才會有美好的未來</li> 
    <li>沒有任何人一開始就是高手,必須要好好學習</li> 
    <li>本站的url地址是softwhy.com</li> 
    <li>每一天都是新的,所以要好好真心當前時間</li> 
    <li>div css教程裡面有大量詳實的程式碼</li> 
  </ul> 
</div> 
<input type="button" id="bt" value="檢視效果"/>
</body> 
</html>

上面的程式碼實現了我們的要求,程式碼非常的簡單,更多內容可以參閱相關閱讀。

相關閱讀:

(1).click事件可以參閱jQuery click事件一章節。

(2).eq()方法可以參閱jQuery eq()一章節。

(3).next()方法可以參閱jQuery next()一章節。

(4).css()方法可以參閱jQuery css()一章節。

相關文章