jquery trim方法可以去除什么符号

在jquery中,trim()方法可以去除字符串两端的空白符号,包括换行符、空格符和制表符,语法“$.trim(string)”;参数“string”指定需要去除两端空白字符的字符串。

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。

在jquery中,trim()方法可以去除字符串两端的空白字符。

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

语法:

$.trim(string)
  • string:必须参数,String类型,指定需要去除两端空白字符的字符串。

示例:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <script src="js/jquery-1.10.2.min.js"></script>

</head>
<body>
	
<pre id="original"></pre>
<pre id="trimmed"></pre>
<script>
$(function () { 
	var str = "         lots of spaces before and after         ";
	$( "#original" ).html( "原始字符串: '" + str + "'" );
	$( "#trimmed" ).html( "使用$.trim()'后: '" + $.trim(str) + "'" );
})
</script>
 
</body>
</html>

相关教程推荐:jQuery视频教程

以上就是jquery trim方法可以去除什么符号的详细内容,更多请关注美工之家9502669.com其它相关文章!