jQuery.trim()


jQuery.trim( str )返回: String

描述: 去掉字符串起始和结尾的空格。

  • 添加的版本: 1.0jQuery.trim( str )

    • str
      类型: String
      The string to trim.

$.trim()函数会移除字符串开始和结尾处的所有换行符,空格(包括连续的空格)和制表符(tab)。如果这些空白字符在字符串中间时,它们将被保留,不会被移除。

例子:

Example: 删除在开始和在字符串的末尾两个空格。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<pre id="original"></pre>
<pre id="trimmed"></pre>
<script>
var str = " lots of spaces before and after ";
$("#original").html("Original String: '" + str + "'");
$("#trimmed").html("$.trim()'ed: '" + $.trim(str) + "'");
</script>
</body>
</html>

Demo:

Example: 删除在开始和在字符串的末尾两个空格。

1
$.trim(" hello, how are you? ");

Result:

1
"hello, how are you?"