如何在锚标记中插入引号?

时间:2013-07-04 12:29:44

标签: string node.js anchor quotes

如何在字符串,锚标记中插入引号?我在node.js的应用程序中添加了使用标记的链接。它不接受。

如何克服这个问题?它不接受的原因是什么?

"<A HREF="index.html">";

2 个答案:

答案 0 :(得分:1)

您可以在string literals中转义引号:

var s = "<A HREF=\"index.html\">";

答案 1 :(得分:0)

有两种方法

第一种方法

var s = '<A HREF="index.html">';

第二种方法

字符串文字中的转义引号:

var s = "<A HREF=\"index.html\">";