gpt4 book ai didi

javascript - 我如何编写 'if' 语句,以便输入字段中不允许出现空格?

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

我是 javascript 的新手,并且很难尝试编写条件语句,如果输入字段为空/空白,或包含除 a-z 之外的任何其他字符,则会给出错误。

这是我目前所拥有的:

$(document).ready(function(){
$('input#first, #city, #subject, input#last, textarea#message').on("keyup bind cut copy paste", function(){
var value = $(this).val();
var first = new RegExp('[a-z]');
if (/^\s*$/.test(first.value));
if(value=='' || first.length<=1) {
if(value=='' || last.length<=1);
if(value=='' || city.length<=1);
if (first.test(value));
$(this).css('border','2px solid #ff0000');
$(this).css('background-color','#ffcece');
}
else {
$(this).css('border','1px solid #ffd09d');
$(this).css('background-color','#ffffff');
}
});
});

最佳答案

这应该适合你

$(document).ready(function(){
$('input#first, #city, #subject, input#last, textarea#message').on("keyup bind cut copy paste",
function(){
var value = $(this).val();
var first = new RegExp('^[a-zA-Z]+$');
if (first.test(value)) {
$(this).css('border','2px solid #ff0000');
$(this).css('background-color','#ffcece');
}
else {
$(this).css('border','1px solid #ffd09d');
$(this).css('background-color','#ffffff');
}
});
});

关于javascript - 我如何编写 'if' 语句,以便输入字段中不允许出现空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26722568/

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