码迷,mamicode.com
首页 > Web开发 > 详细

js字符串过滤实用代码

时间:2016-06-22 17:14:49      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

1.每隔4位数字后加","号。

<input type=‘text‘ id="test" placeholder="输入数字每隔4位后加,号">

  

window.onload=function(){
  document.getElementById("test").onkeyup=function(){
      var regex=new RegExp(/\d/);
          if(!regex.test(this.value)){
           this.style.border="1px dashed red";
          }else{
            this.style.border="1px solid black";
            this.value=this.value.replace(/(\d{4})(?=\d)/,"$1,");
        }  
    }  
}            

2.将空格替换为‘,’和‘“,”’

    var showT=document.getElementById(‘showT‘);
    function addcomma(){
        var textAreaV=document.getElementById(‘textArea‘).value;
        showT.innerHTML=textAreaV.replace(/\s/g,",");
    }
    function addquo(){
        var textAreaV=document.getElementById(‘textArea‘).value;
        showT.innerHTML=textAreaV.replace(/\s/g,"‘,‘");
    }

  

js字符串过滤实用代码

标签:

原文地址:http://www.cnblogs.com/cm1236/p/5607825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!