本文實例講述了自訂函數實作IE7與IE8不相容js中trim函數的方法。分享給大家供大家參考。具體實作方法如下:
<html> <head> <title>test</title> <script type="text/javascript"> String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } function check(){ var str = document.getElementById("test").value; alert(str.trim()); } </script> </head> <body> <center> <input id="test" type="text" /> <input id="but" type="button" value="检验" onclick="check();"/> </center> </body> </html>
這樣就解決了IE上js不支援trim的問題。
希望本文所述對大家的javascript程式設計有所幫助。