JavaScript のトリム機能は Firefox でも問題なく使用できます
<script language="javascript"> var test1 = " aa "; test1 = test1.toString(); test1 = test1.trim(); </script>
Firefox ではこの方法を使用しても問題ありませんが、IE ではエラーが発生します
次に、それを変更します
String.prototype.trim=function(){return this.replace(/(^\s*)|(\s*$)/g,"");}
この文をヘッダーに追加すると、上記は IE と FF の両方で実行できます
JQuery によって提供されるメソッド:
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> </head> <body> <button>Show Trim Example</button> <script> $("button").click(function () { var str = " lots of spaces before and after "; alert("'" + str + "'"); str = jQuery.trim(str); alert("'" + str + "' - no longer"); }); </script> </body> </html>