欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

去掉字符串前后的空格

程序员文章站 2024-01-20 17:34:40
...

我们使用JQuery的trim()方法来清除字符串前后空格的问题

$(function () { 
	var str = "         lots of spaces before and after         ";
	$( "#trimmed" ).html(  $.trim(str)  );
})
//结果显示为:lots of spaces before and after

jQuery.trim()方法

$.trim() 函数用于去除字符串两端的空白字符

语法:

$.trim( str )

-------------------
参数      描述
str     需要去掉两边空格的字符串