久久久久无码精品,四川省少妇一级毛片,老老熟妇xxxxhd,人妻无码少妇一区二区

javascript在IE下trim函數(shù)無(wú)法使用的解決方法

時(shí)間:2024-08-19 10:44:05 JavaScript 我要投稿
  • 相關(guān)推薦

有關(guān)javascript在IE下trim函數(shù)無(wú)法使用的解決方法

  首先,javascript的trim函數(shù)在firefox下面使用沒(méi)有問(wèn)題:

  var test1 = " aa "; test1 = test1.toString(); test1 = test1.trim();

  在火狐下這樣用沒(méi)有問(wèn)題, 但是在IE下就報(bào)錯(cuò)!

  對(duì)此,我們可以修改一下:

  String.prototype.trim=function(){return this.replace(/(^s*)|(s*$)/g,"");}

  在頭上加上這一句,上面的就可以在IE和FF下都可以運(yùn)行了:

  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ù)無(wú)法使用的解決方法】相關(guān)文章:

電腦開(kāi)機(jī)后鼠標(biāo)無(wú)法使用的解決方法01-12

淺析jQuery 遍歷函數(shù)javascript08-06

IE與Firefox在JavaScript上的不同寫法小結(jié)07-22

Javascript函數(shù)的定義和用法分析08-15

Javascript 閉包引起IE內(nèi)存泄露分析07-05

JavaScript中push(),join() 函數(shù)實(shí)例詳解09-05

最常用的20個(gè)javascript方法函數(shù)09-10

JavaScript日期時(shí)間格式化函數(shù)08-29

CAD無(wú)法填充解決方法11-25

使用ajax操作JavaScript對(duì)象的方法09-28