您好,登錄后才能下訂單哦!
本文實例講述了jQuery實現的隔行變色功能。分享給大家供大家參考,具體如下:
實現效果如圖:
html結構代碼:
<ul id="ul1"> <li>我是第1個li標簽</li> <li>我是第2個li標簽</li> <li>我是第3個li標簽</li> <li>我是第4個li標簽</li> <li>我是第5個li標簽</li> <li>我是第6個li標簽</li> <li>我是第7個li標簽</li> <li>我是第8個li標簽</li> <li>我是第9個li標簽</li> <li>我是第10個li標簽</li> </ul>
JQuery代碼:
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $ ( function () { //1.把奇數行li標簽的背景色設置為天藍色. $('li:odd').css('backgroundColor','skyblue'); //2.把偶數行li標簽的背景色設置為紅色. $('li:even').css('backgroundColor','red'); //3. 鼠標移入事件 var bgColor=null;//先聲明一個變量把顏色存起來 $('li').mouseover(function ( ) { // 3.1在鼠標移入到這個li標簽時,沒有改變顏色之前,把他之前的顏色給記錄下來. bgColor=$(this).css('backgroundColor'); $(this).css('backgroundColor','green') }) //4. 鼠標移出事件 $('li').mouseout(function ( ) { $(this).css('backgroundColor',bgColor) }) } ) </script>
完整實例代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>www.jb51.net jQuery隔行變色</title> </head> <body> <ul id="ul1"> <li>我是第1個li標簽</li> <li>我是第2個li標簽</li> <li>我是第3個li標簽</li> <li>我是第4個li標簽</li> <li>我是第5個li標簽</li> <li>我是第6個li標簽</li> <li>我是第7個li標簽</li> <li>我是第8個li標簽</li> <li>我是第9個li標簽</li> <li>我是第10個li標簽</li> </ul> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $ ( function () { //1.把奇數行li標簽的背景色設置為天藍色. $('li:odd').css('backgroundColor','skyblue'); //2.把偶數行li標簽的背景色設置為紅色. $('li:even').css('backgroundColor','red'); //3. 鼠標移入事件 var bgColor=null;//先聲明一個變量把顏色存起來 $('li').mouseover(function ( ) { // 3.1在鼠標移入到這個li標簽時,沒有改變顏色之前,把他之前的顏色給記錄下來. bgColor=$(this).css('backgroundColor'); $(this).css('backgroundColor','green') }) //4. 鼠標移出事件 $('li').mouseout(function ( ) { $(this).css('backgroundColor',bgColor) }) } ) </script> </body> </html>
感興趣的朋友還可以使用在線HTML/CSS/JavaScript代碼運行工具:http://tools.jb51.net/code/HtmlJsRun測試上述代碼運行效果。
更多關于jQuery相關內容感興趣的讀者可查看本站專題:《jQuery表格(table)操作技巧匯總》、《jQuery切換特效與技巧總結》、《jQuery擴展技巧總結》、《jQuery常用插件及用法總結》、《jQuery常見經典特效匯總》及《jquery選擇器用法總結》
希望本文所述對大家jQuery程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。