JS去除字符串中的所有空格

 

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>去除字符串中的所有空格</title>
<script src="http://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<script>
function Trim(str) {
    var result;
    result = str.replace(/(^\s+)|(\s+$)/g, "");
    result = result.replace(/\s/g, "");
    return result;
}
var aa="我爱    我家,我爱          我的  祖国。您好,我叫  祖国。"
document.write(aa+"<br/>");
document.write("<br/>去除字符串中的所有空格: "+Trim(aa));
</script>
</body>
</html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.duanlonglong.com/qdjy/289.html