去掉字符串前后的空格
程序员文章站
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 需要去掉两边空格的字符串