今天遇到了一个问题,用户在在前端的input里面输入id的时候,多写了个空格,数据库里面就找不到id了,所以无法获取输入的id所绑定的标签位置在哪里,现在需要在前端做一个处理,input框输入的数值里面,会自动消除空格。
代码示例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="modal-body form"> <div class="form-group"> <label class="col-sm-2 control-label" >资产编号<span class="required"> * </span></label> <div class="col-sm-6"> <input type="text" class="form-control" id="assetId" onkeyup="this.value=this.value.replace(/[, ]/g,'')"></input> </div> </div> </div> </body> </html>
这段代码的作用:
onkeyup="this.value=this.value.replace(/[, ]/g,'')"
1:在input框里面输入编号的过程中,出现空格,自动消除
2:input首尾出现空格,自动消除
3:复制粘贴的文本里面出现空格,自动消除