gpt4 book ai didi

javascript - jquery验证代码不允许在文本框中只留空格

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

我正在寻找其中不允许只有空格的代码...例如,我有一个文本框,我已经试过了

$(document).ready(function()
{
$("#mybutton").live('click',function()
{
var txt_family_name=$("#mytextbox").val();
if(txt_family_name =="" || txt_family_name ==null)
{
alert("null");
}
else
{
alert("not null");
}
});
});

上面的代码我试过了,但没有用。所以请帮助我..在我的一个按钮上我调用上面的代码

示例:空格....带有任何文本——输出不应该为空 : 空格 空格....任何没有任何其他文本的空格——输出应该为空

最佳答案

you can use the length attribute and the trim method to remove the trailing spaces, if any: 

$("#mybutton").on('click',function()
{
var length = $.trim($("#mytextbox").val()).length;
if(length == 0)
{
alert("null");
}
else
{
alert("not null");
}
});

关于javascript - jquery验证代码不允许在文本框中只留空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29537722/

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