gpt4 book ai didi

jquery - 如何同时将空格替换为下划线(当我在输入字段中输入文本时)?

转载 作者:行者123 更新时间:2023-12-03 22:20:51 25 4
gpt4 key购买 nike

你能告诉我如何同时(当我在输入字段中输入文本时)将空格替换为下划线吗?如果我有这样的字符串。

replace(/ /g,"_");

但是我正在寻找当用户在输入字段中输入文本时,它会自动用下划线替换空格。我使用了 keyup 事件,它只在第一次触发。

$("#test").keyup(function() {
var textValue = $(this).val();
if(textValue==' '){
alert("hh");
}
});

最佳答案

DEMO

$("#test").keyup(function () {
var textValue = $(this).val();
textValue =textValue.replace(/ /g,"_");
$(this).val(textValue);
});

更新

DEMO

$("#test").keyup(function () {
this.value = this.value.replace(/ /g, "_");
});

关于jquery - 如何同时将空格替换为下划线(当我在输入字段中输入文本时)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18504370/

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