zl程序教程

您现在的位置是:首页 >  后端

当前栏目

js 单引号替换成双引号,双引号替换成单引号

JS 单引号 双引号 替换成
2023-09-27 14:25:31 时间
str.replace(/"/g,"'");
str.replace(/'/g,'"');