js中,id = id.replace(/\"/g, ''); 是什么意思?

日期:2019-11-30 22:06:31 人气:1

js中,id = id.replace(/\"/g, ''); 是什么意思?

id=id.replace(/\"/g,'')的作用是把所有的/替换为空; .replace(参数1,参数2)的作用是把参数1替换为参数2; \是转义的意思,\/代表的是/字符; g:代表全局匹配; 字符串的replace()方法如果直接用str.replace(/\//g,'')只会替换第一个匹配的字符。 扩展资料 js中处理元素id带“/”(正斜杠)的方法
    A+
热门评论