再看最后一眼青春的星空

灿烂火光就像盛夏的烟火

欢送挣扎万年文明的巅峰

我们啊

将变星辰永远飘在黑暗宇宙

这个男人来自三体

Tirion

导航

JQuery输入框获取/失去焦点行为

//搜索框获取焦点清除内容
$(function() {
    $("input").focus(function() { //获取焦点,清空默认内容
        $(this).css('color', 'black').addClass('focus');
        if ($(this).val() == this.defaultValue) {
            $(this).val('');
        }
    }).blur(function() { //失去焦点,若没有内容,则恢复默认内容;有内容则不变
        $(this).removeClass('focus');
        if ($(this).val() == '') {
            $(this).val(this.defaultValue).css('color', '#aaa');
        }
    });
});

注:.focus只是输入框的css效果,可以忽略

posted on 2016-04-21 11:55  Tirion  阅读(1842)  评论(0)    收藏  举报

The Man from 3body