1.通过正则匹配解决问题

此处涉及\s:匹配任意空白符  \S:匹配任意非空白字符

<input type="text" onkeyup="this.value=this.value.replace(/\s+/g,'')">

 

 

相关文章: