如何更改jquery提示的颜色

时间:2012-03-03 23:49:31

标签: php jquery

如何更改jquery提示文本颜色。目前它与文本字段的颜色相同,但我希望它与众不同!

$(document).ready(function () {
    //Shows the title in the text box, and removes it when modifying it
    $('input[title]').each(function (i) {
        $(this).val($(this).attr('title')).addClass('hint');

        $(this).focus(function () {
            if ($(this).val() == $(this).attr('title')) {
                $(this).val('').removeClass('hint');
            }
        });

        $(this).blur(function () {
            if ($(this).val() == '') {
                $(this).val($(this).attr('title')).addClass('hint');
            }
        });
    });

    //Clear input hints on form submit
    $('form').submit(function () {
        $('input.hint').val('');
        return true;
    });
});

1 个答案:

答案 0 :(得分:0)

你在css中更改它的方式与上一个线程相同,我刚刚给你提交了jQuery代码替换你的提示10分钟前

http://jsfiddle.net/jzCeq/2/