kwj

走越远,路越艰!

常用链接

统计

最新评论

jquery实现表单onfocus,onblur效果

<script>
    $("document").ready(function(){
        $("input[@type='text'],input[@type='password'],textarea").focus(function(){
            $(this).css({background:"#fcc", border:"1px solid #f00"}).blur(function(){
                $(this).css({background:"transparent", border: "1px solid #ccc"})
            })
        });
    });
  </script>

$(document).ready(function(){
if ($.browser.msie){
  $("input[@type='text'], input[@type='password'], textarea").focus(function(){$(this).addClass("focus")}).blur(function(){$(this).removeClass("focus")});
}
})

posted on 2008-04-02 14:50 木剑 阅读(581) 评论(0)  编辑  收藏 所属分类: js



标题  
姓名  
主页
验证码 *  
内容(请不要发表任何与政治相关的内容)  
  登录  使用高级评论  新用户注册  返回页首  恢复上次提交      
该文被作者在 2008-04-02 14:53 编辑过