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的实现

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。