Posted in Javascript onFebruary 03, 2015
本文实例讲述了自定义函数实现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程序设计有所帮助。
自定义函数实现IE7与IE8不兼容js中trim函数的问题
- Author -
Benjamin_whx声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@