2

我有以下代码

HTML:

<input type='text' class='a' />
<div class='inst' tag='a'></div>
<input type='text' class='b' />
<div class='inst' tag='b'></div>
<input type='text' class='c' />
<div class='inst' tag='c'></div>

JS:

$(function() {
    $('.inst').click(function() {
        alert($(this).attr('tag') + ' clicked');
    });

    $('[type=text]').focus(function() {
       show_inst($(this).attr('class'));
    }).blur(function() {
       //hide_inst($(this).attr('class'));
    });

    function show_inst(tag) {
        $('div.inst[tag=' + tag + ']').html(tag + ' instructions');
    }

    function hide_inst(tag) {
        $('div.inst[tag=' + tag + ']').html('');
    }
});

CSS:

.inst {
    width: 200px;
    height: 100px;
    border: 1px solid black;
    margin: 10px;
    cursor: pointer;
}

它工作正常:单击时inst我会看到警报消息,并且当输入成为焦点时,就会出现指令。

现在我希望不相关的指令在模糊时消失。所以我尝试在里面添加注释行blur()。它不像那样工作,因为blur()首先调用并删除指令,所以如果我点击指令 - 没有任何反应。

我怎么能解决这个问题?

4

2 回答 2

3

如果您唯一的问题是在发出点击指令之前隐藏指令,请考虑添加一个微小的延迟。这基本上会导致您的隐藏指令在单击处理后执行。

像这样的东西:

$('[type=text]').focus(function() {
   show_inst($(this).attr('class'));
}).blur(function() {
   setTimeout(function(){
     hide_inst($(this).attr('class'));
   }, 50); // make this happen after any other events
});
于 2010-08-02T11:22:47.127 回答
1
        var timeoutId;
        $('[type=text]').on("blur", function(){
            timeoutId = setTimeout(function(){                     
                console.log("blur");
            }, 50);
        }).on("focus", function(){
            clearTimeout(timeoutId);
        });

或者你可以试试这个,它只会在你离开输入时触发模糊(“错误”点击被 clearTimeout 删除)。

于 2012-05-29T11:11:15.317 回答