gpt4 book ai didi

javascript - 从焦点文本框中删除数据

转载 作者:行者123 更新时间:2023-12-02 18:37:24 25 4
gpt4 key购买 nike

我使用了 http://dropthebit.com/580/fancy-input-jquery-plugin/ 中的代码,到目前为止效果很好,但我不知道如何从焦点文本框中删除数据。

这是一些我认为可能相关的代码:

    $('section :input').val('').fancyInput()[0].focus();

// Everything below is only for the DEMO
function init(str){
var input = $('section input').val('')[0],
s = 'Type Something ?'.split('').reverse(),
len = s.length-1,
e = $.Event('keypress');

var initInterval = setInterval(function(){
if( s.length ){
var c = s.pop();
fancyInput.writer(c, input, len-s.length).setCaret(input);
input.value += c;
//e.charCode = c.charCodeAt(0);
//input.trigger(e);

}
else clearInterval(initInterval);
},150);
}

init();

最佳答案

通常,如果您使用 jQuery,以下代码应该可以工作:

$('#textboxID').focus(function(){
$(this).val("");
});

关于javascript - 从焦点文本框中删除数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17186954/

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