亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

JavaScript

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

時(shí)間:2024-08-01 15:36:22 JavaScript 我要投稿
  • 相關(guān)推薦

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

  首先,javascript的trim函數(shù)在firefox下面使用沒有問題:

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

  在火狐下這樣用沒有問題, 但是在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ù)無法使用的解決方法】相關(guān)文章:

SATA硬盤無法使用的原因11-21

Excel中if函數(shù)使用的方法06-16

移動(dòng)硬盤無法顯示解決方法12-29

無法識(shí)別大硬盤問題及解決方法07-16

SATA硬盤無法用Ghost的原因及解決方法07-16

Word文檔無法正常打開解決方法01-24

excel中sumif函數(shù)使用方法03-23

Excel中COUNTIF函數(shù)的使用方法01-23

如何調(diào)試javascript腳本呢07-19

javascript跨域訪問的方法07-19