本文实例讲述了自定义函数实现IE7与IE8不兼容js中trim函数的方法。分享给大家供大家参考。具体实现方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<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程序设计有所帮助。