trim()方法,類似Python中的strip(),用去去除字元串對象前後的空格。 ...
trim()方法,類似Python中的strip(),用去去除字元串對象前後的空格。
<!DOCTYPE html> <html> <body> <script> var s = " afsdf "; document.write("|" + s + "|" + "<br>"); var s2 = s.trim(); document.write("|" + s2 + "|" + "<br>"); </script> </body> </html>