当前位置: 代码迷 >> JavaScript >> js trim()方法在IE下无法使用的有关问题
  详细解决方案

js trim()方法在IE下无法使用的有关问题

热度:504   发布时间:2013-11-11 14:02:17.0
js trim()方法在IE下无法使用的问题

http://fhuan123.iteye.com/blog/1128854

?

转载

?

?

只要在使用trim()之前加上一句

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

?

?OK!!!!

  相关解决方案