使用 .select() 取消选择输入中选择的内容内容、select

2023-09-07 22:01:33 作者:孤独的人总是晚回家

在我使用 .select() 将鼠标悬停在输入框中选择文本后,我执行了以下操作:

HTML:

<input type="text" class="hoverAble" value="hover here"/><br/>
如何在电脑上安装ps破解版

jQuery:

$(".hoverAble").mouseenter(function() {this.select();}).mouseleave(函数() {//我不知道该放什么.});

请参阅

http://jsfiddle.net/robert/adCfw/6/

After I use .select() to select the text in the input box when hovered over I did the following:

HTML:

<input type="text" class="hoverAble" value="hover here"/><br />

jQuery:

$(".hoverAble").mouseenter(function() {

    this.select();

}).mouseleave(function() {

    //I can't figure what to put here.
});

See here. Warning for it to function correctly (in jsfiddle) you must click once in the result frame.

The main idea is mouseleave is working as as expected also.

As you might have noticed, I can't figure out a way to un-select the text when you hover out and avoid this:

解决方案

use .blur();

http://jsfiddle.net/robert/adCfw/6/