js去掉双引号

 替换:

d = d.replace(""","").replace(""","");

全部替换:

d = d.replace(/"/g, "");
原文地址:https://www.cnblogs.com/zrui-xyu/p/4844356.html