DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery實現的一種常用高亮效果示例代碼
Jquery實現的一種常用高亮效果示例代碼
編輯:JQuery特效代碼     

如下所示:
. 代碼如下:
<html>
<head>
    <title>jquery</title>
    <style>
        body
        {
            font-size: 12px;
        }
        li
        {
            list-style: none;
            height: 34px;
            padding-top: 5px;
        }
    </style>

    <script type="text/javascript" src="jquery-1.2.6.pack.js"></script>

    <script type="text/javascript">
$(document).ready(function(){   
    var oInputs = $("ul.demo input");

    oInputs.each(function(i){
        oInputs.eq(i).focus(function(){
            oInputs.eq(i).parent().css("background-color","ccf");
        }).blur(function(){
            oInputs.parent().css("background-color","");
        })
     });

   
    oInputs.focus(function(){
        $(this).css("background-color","ff9").blur(function(){
            $(this).css("background-color","");
        });
    })
})
    </script>

</head>
<body>
    <ul class="demo">
        <li>
            <h5>
                注冊選項</h5>
        </li>
        <li>用戶名:<input type="text" value="" id="name" style="width: 200px" /></li>
        <li>密 碼:<input type="password" value="" id="pass" style="width: 200px" /></li>
        <li>愛 好:<input type="checkbox" value="" />籃球 <input type="checkbox" value="" />足球 <input
            type="checkbox" value="" />音樂</li>
    </ul>
    </script>
</body>
</html>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved