在使用trim()函数时,IE7和IE8不兼容。

<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>


最后修改:2015 年 07 月 03 日
如果觉得我的文章对你有用,请随意赞赏