首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

除去首尾空格的公用方法

2013-08-13 
去除首尾空格的公用方法String.prototype.trim function() {return (this.replace(/^\s+|\s+$/g,))}/

去除首尾空格的公用方法

String.prototype.trim = function() {return (this.replace(/^\s+|\s+$/g,""));}//调用方法function check(){var fn = document.getElementById("fileName").value;document.getElementById("fileName").value = fn.trim();}

热点排行