gpt4 book ai didi

javascript - 如何在keyup函数中自动添加正斜杠

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

我有一些字段,当用户在第二个字母之后输入时,我需要自动添加正斜杠。这在 jquery 中可能吗?

<input type="text" class="someclass"/>

$(document).on('keyup','.classname', function(){
var count = $(this).val();
if(count == 2)
{
// Need stuff here
}

});

最佳答案

您可以使用:

$(document).on('keyup','.someclass', function(){
var count = $(this).val().length;
if(count == 2 && e.keyCode != 8){
$(this).focus().val(function( index, value ) { return value + "/ " ; });
}
});

关于javascript - 如何在keyup函数中自动添加正斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30300597/

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