JS问题,去掉字符串的前后空格
发布网友
发布时间:2022-04-28 12:47
我来回答
共4个回答
热心网友
时间:2022-04-22 15:22
String.prototype.trim=function() {
return this.replace(/(^\s*)|(\s*$)/g,'');
}
var str=" test ";
alert("["+str+"]"); // [ test ]
alert("["+str.trim()+"]"); // [test]
热心网友
时间:2022-04-22 16:40
<script type="text/javascript">
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, "");
}
alert(" good idea! ".trim()=="good idea!");
</script>
热心网友
时间:2022-04-22 18:15
function trim(str) {
return str.replace(/(^\s*)|(\s*$)/g, "");
}
(trim(" good idea! ")=="good idea!");
这样可以不
热心网友
时间:2022-04-22 20:06
String.prototype.trim=function(){
return this.replace(/(^\s*)|(\s*$)/g, "");
}