首页 > 网站 > WEB开发 > 正文

jquery 获得焦点的时候,焦点时文本框清空,失去焦点时又显示默认文字

2024-04-27 15:07:38
字体:
来源:转载
供稿:网友

 <p> <input type="text" class="input" name="name" value="姓名NAME:""/></p>

$(document).ready(function() {

    //each遍历文本框    $(".input").each(function() {        //保存当前文本框的值        var vdefault = this.value;        $(this).focus(function() {            //获得焦点时,如果值为默认值,则设置为空            if (this.value == vdefault) {                this.value = "";            }        });        $(this).blur(function() {            //失去焦点时,如果值为空,则设置为默认值            if (this.value == "") {                this.value = vdefault;            }        });    });});
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表