- 相关推荐
有关javascript在IE下trim函数无法使用的解决方法
首先,javascript的trim函数在firefox下面使用没有问题:
var test1 = " aa "; test1 = test1.toString(); test1 = test1.trim();
在火狐下这样用没有问题, 但是在IE下就报错!
对此,我们可以修改一下:
String.prototype.trim=function(){return this.replace(/(^s*)|(s*$)/g,"");}
在头上加上这一句,上面的就可以在IE和FF下都可以运行了:
String.prototype.trim=function(){return this.replace(/(^s*)|(s*$)/g,"");} var test1 = " aa "; test1 = test1.toString(); test1 = test1.trim();
JQuery提供的方法:
Show Trim Example
$("button").click(function () { var str = " lots of spaces before and after "; alert(" + str + "); str = jQuery.trim(str); alert(" + str + - no longer"); });
【javascript在IE下trim函数无法使用的解决方法】相关文章:
电脑开机后鼠标无法使用的解决方法01-12
IE与Firefox在JavaScript上的不同写法小结07-22
Javascript函数的定义和用法分析08-15
JavaScript中push(),join() 函数实例详解09-05
JavaScript日期时间格式化函数08-29
CAD无法填充解决方法11-25