如何在浏览器中显示的JavaScript字符串中包含双引号?
我正在做JavaScript作业,我必须在列表中间加上双引号,如下所示:
if (i == 0) { error += "<li> this is not the name "....." </li>\n" }
使用单引号。
error += '<li> this is not the name "....." </li>\n';
或转义双引号。
error += "<li> this is not the name \".....\" </li>\n";