- 相关推荐
有关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函数无法使用的解决方法】相关文章:
SATA硬盘无法使用的原因11-21
Excel中if函数使用的方法06-16
移动硬盘无法显示解决方法12-29
无法识别大硬盘问题及解决方法07-16
Word文档无法正常打开解决方法01-24
excel中sumif函数使用方法03-23
Excel中COUNTIF函数的使用方法01-23
如何调试javascript脚本呢07-19
javascript跨域访问的方法07-19