摘要: var str =' hello world '; // 去除开头的空格 str1 = str.replace(/^\s*/g ,'') //去除结尾的空格 str2 = str.replace(/\s* $/g ,'') console.log(str1) console.log(str2) st 阅读全文
posted @ 2020-07-25 17:24 前端那点事 阅读(3736) 评论(0) 推荐(1) 编辑