首页 > 代码库 > IE7/IE8不兼容js trim函数,自己实现

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=http://www.mamicode.com/"检验" onclick="check();"/>  >这样就解决了IE上js不支持trim的实现

IE7/IE8不兼容js trim函数,自己实现