JQurey input输入框聚焦变色

来源:互联网 发布:php搭建app服务器 编辑:程序博客网 时间:2024/05/18 15:03

这里写图片描述

CSS代码设置默认的css在js中用<style type="text/css">    /*设置获得焦点背景颜色*/    .focus{        background: green;        border: 1px solid red;    }    </style>HTML代码 <form action="" id="from1" method="post">        <fieldset>            <legend>个人基本信息</legend>            <div>                <label for="username">用户名:</label>                <input id="username" type="text"></input>            </div>            <div>                <label for="pwd">密码:</label>                <input id="pwd" type="password"></input>            </div>        </fieldset>    </form>js代码$(function(){    $(":input").focus(function(){        $(this).addClass("focus");    }).blur(function(){        $(this).removeClass("focus");    });});
0 0