如何替换字符串中的反斜杠双引号(例如 \")?
下面的代码不起作用。
<!DOCTYPE html>
<html>
<head>
</head>
<script type="text/javascript">
var myVar = '\"Things You Should Know\"';
document.write(myVar.replace(/\\\"/g, '|'));
</script>
<body>
<br>hello
</body>
</html>