在 JavaScript 中,用双引号括住字符串可以防止在字符串本身中包含双引号。要在字符串中显示双引号,有两种解决方案:
使用单引号:
将字符串括在单引号 (' ') 而不是双引号中(“”)。这允许您在字符串中嵌入双引号而不转义它们。例如:
<code class="js">error += '<li> this is not the name "....." </li>\n';</code>
转义双引号:
如果不喜欢单引号,可以使用反斜杠 () 转义双引号。这指示浏览器按字面解释双引号字符。例如:
<code class="js">error += `"This is not the name \".....\""`;</code>
请注意,在您提供的代码中,错误字符串用双引号引起来。因此,您应该使用转义字符方法在列表项中包含双引号:
<code class="js">error += '<li> this is not the name \".....\" </li>\n';</code>
以上是如何在 JavaScript 字符串中嵌入双引号?的详细内容。更多信息请关注PHP中文网其他相关文章!