js坚持不懈之18:trim()方法

trim()方法,类似Python中的strip(),用去去除字符串对象前后的空格。

<!DOCTYPE html>

<html>

<body>
<script>
var s = "       afsdf           ";
document.write("|" + s + "|" + "<br>");
var s2 = s.trim();
document.write("|" + s2 + "|" + "<br>");
</script>
</body>
</html>

 

posted @ 2019-02-20 10:24  正态分个布  阅读(375)  评论(0编辑  收藏  举报