gpt4 book ai didi

javascript - 当我告诉输入字段不要清除文本时,它正在清除文本

转载 作者:行者123 更新时间:2023-12-02 20:33:18 27 4
gpt4 key购买 nike

我有一个用 onfocus="this.value='' 编写的输入字段,但最近决定将其更改为 onfocus="this.select() > .麻烦的是,当我去更改它时,它仍然清除!我搜索了整个 javascript 库、html、所有内容,寻找可能导致此问题的原因。没有任何类似的东西被调用。

我尝试清除缓存。我尝试搜索 value=''cl(

有人知道我该如何调试这个吗?或者更糟糕的是,覆盖它正在做的事情以使其执行我想要的操作?

我的代码:

<input type="text" value="Enter Keyword or Co. Name" name="q" id="q" class="foobar">

我也尝试过:

<input type="text" value="Enter Keyword or Co. Name" name="q" id="q" class="foobar" onfocus="this.select();">

谢谢!

最佳答案

 $(function() { 
$('input[type=text]').focus(function() {
$(this).trigger('select');
});
});

你可以测试一下here

关于javascript - 当我告诉输入字段不要清除文本时,它正在清除文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3718965/

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