JS如何去除指定字符串两种方式可以实现1:使用replace函数替换 varstr="hello world!" str=str.replace("l","") 即使用空串替换某一个字符2023-04-29JavaScript270