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())
})

 

posted @ 2016-12-25 20:19  以茜为贵  阅读(292)  评论(0编辑  收藏  举报