jquery去除字串空格的方法:1.使用replace函數配合正規表示式來找出字串中的空格,並用空字元【''】來替換空格即可;2、使用【$. trim】函數來去除字串開始和末尾處的空格,語法【$.trim( str )】。
相關推薦:《jQuery教學》
本教學操作環境:windows7系統、jquery1.10.2版本,此方法適用於所有品牌電腦。
方法1:使用replace()配合正規表示式
去移除所有空格【兩頭空格包含字串中間存在的空格】:
str = str.replace(/\s+/g,'');
去除兩頭空格:
str = str.replace(/^\s+|\s+$/g,'');
去除左空格:
str = str.replace( /^\s*/, '');
去除右空格:
str = str.replace(/(\s*$)/g,'');
方法2:$.trim() 函數
$.trim() 函數用於移除字串兩端的空白字元。
注意:$.trim()函數會移除字串開始和結尾處的所有換行符,空格(包括連續的空格)和製表符。如果這些空白字元在字串中間時,它們將被保留,不會被移除。
語法
$.trim( str )
範例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script> </head> <body> <pre id="original"><script> $(function () { var str = " lots of spaces before and after "; $( "#original" ).html( "Original String: '" + str + "'" ); $( "#trimmed" ).html( "$.trim()'ed: '" + $.trim(str) + "'" ); }) </script>