聚焦和模糊错误元素触发的事件



我试图同时为多个输入设置一个默认值,在焦点上删除该值,如果输入为空,则在模糊上再次设置该值。为了实现这一点,使用jQuery,我得到了以下代码:

var settings = {
    value: '',
    focusColor: 'black',
    blurColor: '#CCC',
    value : 'test'
};
$.each($('input'), function(index, el) {
    $(el).on('blur', function(ev) {
        $el = $(this);
        console.log('blur ' + $el.attr('value') + ' ' + $el.attr('id'));
        if ($el.attr('value') == '') 
            $el.attr('value', settings.value).css('color', settings.blurColor);
    }).on('focus', function(ev) {
        console.log('focus ' + $el.attr('value') + ' ' + $el.attr('id'));
        if ($el.attr('value') == settings.value) 
            $(this).attr('value', '').css('color', settings.focusColor);
    });
    $(el).trigger('blur');
});

拥有这个HTML:

<input id="text" type="text" />
<input id="email" type="email" />

问题是,如果我专注于第一个输入,紧接着专注于第二个输入,那么触发的事件是:关注第一个输入、模糊第一个输入并再次关注第一个输出。因此,如果我在第一个中键入一些内容,然后专注于第二个,再在第一个,它不会删除示例文本,而是会删除我键入的内容。

你可以在这里看到(不)工作的例子。打开JavaScript控制台,您会清楚地看到错误的行为。​

您忘记了焦点事件中的集合$el。

$.each($('input'), function(index, el) {
$(el).on('blur', function(ev) {
    $el = $(this);
    console.log('blur ' + $el.attr('value') + ' ' + $el.attr('id'));
    if ($el.attr('value') == '') 
        $el.attr('value', settings.value).css('color', settings.blurColor);
}).on('focus', function(ev) {
    $el = $(this); // <-- should update $el
    console.log('focus ' + $el.attr('value') + ' ' + $el.attr('id'));
    if ($el.attr('value') == settings.value) 
        $(this).attr('value', '').css('color', settings.focusColor);
});
$(el).trigger('blur');
});

你的意思是这样的吗:

$('input').on('blur', function(ev) {
    $el = $(this);
    console.log('blur ' + $el.va() + ' ' + $el.attr('id'));
    if ($el.val() == '')
        $el.attr('value', settings.value).css('color', settings.blurColor);
})
$('input').on('focus', function(ev) {
    $el = $(this);
    console.log('focus ' + $el.val() + ' ' + $el.attr('id'));
    if ($el.val() == settings.value) {
        $(this).val("");
        $(this).css('color', settings.focusColor);
    }
});

演示:http://jsfiddle.net/fnBeZ/4/

相关内容

  • 没有找到相关文章

最新更新