js去掉字符串的空格
Posted 以茜为贵wx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js去掉字符串的空格相关的知识,希望对你有一定的参考价值。
//去左空格; function ltrim(s){ return s.replace(/(^s*)/g, ""); } //去右空格; function rtrim(s){ return s.replace(/(s*$)/g, ""); } //去左右空格; function trim(s){ //s.replace(/(^s*)|(s*$)/g, ""); return rtrim(ltrim(s)); }
这式另一种方式,可以去除字符串中所有的空格。
$(function(){ $("p.class").text($("p.class").text().trim()); }) $("span.Sige_Imfine").each(function(index,element){ $("span.Sige_Imfine").eq(index).text(("span.Sige_Imfine").eq(index).text().trim()) })
以上是关于js去掉字符串的空格的主要内容,如果未能解决你的问题,请参考以下文章