js字符串过滤实用代码
Posted 过路的妖怪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js字符串过滤实用代码相关的知识,希望对你有一定的参考价值。
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字符串过滤实用代码的主要内容,如果未能解决你的问题,请参考以下文章