d = d.replace("\"","").replace("\"","");
如果不确定有多少个双引号:
d = d.replace(/\"/g, "");
JS中去掉字符串中的双引号
最新推荐文章于 2024-07-28 02:06:03 发布
d = d.replace("\"","").replace("\"","");
如果不确定有多少个双引号:
d = d.replace(/\"/g, "");