- 相關(guān)推薦
有關(guān)javascript在IE下trim函數(shù)無法使用的解決方法
首先,javascript的trim函數(shù)在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函數(shù)無法使用的解決方法】相關(guān)文章:
淺析jQuery 遍歷函數(shù)javascript08-06
IE與Firefox在JavaScript上的不同寫法小結(jié)07-22
Javascript函數(shù)的定義和用法分析08-15
Javascript 閉包引起IE內(nèi)存泄露分析07-05
JavaScript中push(),join() 函數(shù)實例詳解09-05
最常用的20個javascript方法函數(shù)09-10
CAD無法填充解決方法11-25