gpt4 book ai didi

javascript - .select() 在 Chrome 中无法正常运行

转载 作者:行者123 更新时间:2023-11-30 08:44:11 25 4
gpt4 key购买 nike

我会保持简短和甜美。尝试在 jQuery 中实现 .select,它似乎在 Chrome 中不合作。单击输入只会短暂地选择内容。

$(document).on('focus','.a-thing', function () {
this.select();
});

jsFiddle

最佳答案

this 不是 jQuery 对象

$(document).on({
focus : function () {
$(this).select();
},
mouseup : function() {
return false;
}
}, '.a-thing');

FIDDLE

并且您必须阻止 mouseup 事件以避免在 mouseup 事件取消选择文本时丢失选择,这是 Chrome 中的已知问题。

关于javascript - .select() 在 Chrome 中无法正常运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23407067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com