时间:2021-05-26
话不多说,请看代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <meta name="author" content="" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <link rel="stylesheet" type="text/css" href="" /> <style type="text/css"></style> <script type="text/javascript" src="jquery-3.0.0.js"></script> </head> <body> <div style="width:300px;height:100px;border:1px solid #E5E5E5;margin:0 auto;margin-top:30px;"> <form action="" method="post"> <span>用户名:</span><input type="text" name="username" class="username" value="" /> <input type="submit" value="提交" class="tijiao"> </form> <script type="text/javascript"> $(document).ready(function(){ $(".tijiao").click(function(){ //var name = $.trim($(".username").val()); var name= $('input[name=username]').val().replace(/(^\s*)|(\s*$)/g,""); if(name==""){ alert("用户名不能为空"); } }); }); /* /(^\s*)|(\s*$)/g 包含以空格、回车符等字符开头或者空格、回车符等字符结尾的字符串,可过滤出所有空格、回车符的字符 /g意思就是:global可选标志,带这个标志表示替换将针对行中每个匹配的串进行,否则则只替换行中第一个匹配串。如:we.fdffddfwe.加上/g后,则2个we都会出来; \s 空白字符 replace() 方法用于在字符串中用一些字符替换另一些字符,或替换一个与正则表达式匹配的子串。 stringObject.replace(regexp/substr,replacement) */ </script> <div> </body></html>以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Jquery:$("#accuracy").val($("#accuracy").val().replace(/\+/g,""));//去掉空格.replace
//去左空格;functionltrim(s){returns.replace(/(^s*)/g,"");}//去右空格;functionrtrim(s){re
1、js去掉字符串的空格//去左空格;functionltrim(s)...{returns.replace(/(^s*)/g,"");}//去右空格;func
本文实例讲述了jQuery实现字符串全部替换的方法。分享给大家供大家参考,具体如下:与C#String类型的Replace方法不同,jQuery的Replace
python编程中,我们在修改代码,遇到空格很多的情况下,我们要删除空格。本文小编整理了三种字符串去除空格的方法:方法一:使用字符串函数replace,去除全部