js去除前后的全角空格

//trim //所有的input type="text" 触发blur事件 $(":text").blur(function(){ var value=$(this).val(); //FireFox $(this).val($.trim(value)); //IE $(this).val(value.trim()); }); String.prototype.trim = function(){ var value = this.replace(/(^/s*)|(/s*$)/g, ""); return value.replace(/(^ *)|( *$)/g, ""); }

ie 6. 7. 8. firefox 和 google chrome 10.0 均有效

你可能感兴趣的:(JavaScript)