<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<input type="text" id="strs" value=" 需要过 滤空格 ">
<input type="button" id="rstrsBtn" value="过滤两边的空格">
<input type="button" id="rstrsBtn2" value="去除所有空格">
<script>
window.οnlοad=function(){
var text=document.getElementById("strs"),
tarbtn=document.getElementById("rstrsBtn"),
tarbtn2=document.getElementById("rstrsBtn2");
tarbtn.οnclick=function(){
text.value=text.value.replace(/^(\s|\u00A0)+|(\s|\u00A0)+$/g,"");//去除左右两边的空格
}
tarbtn2.οnclick=function(){
text.value=text.value.replace(/(\s|\u00A0)+|(\s|\u00A0)/g,"");//去除所有空格
}
}
</script>
</body>
</html>
js去除空格
最新推荐文章于 2023-07-10 11:20:17 发布