我正在逐步构建 HTML 以在 Google 网站中使用,我需要用超链接替换一些内容。但是,根据文档<a>
标签是不允许的。
那么...如何anchor
在以下示例中将其转换为可以附加的 HTML 字符串?
for(var ii=1; ii < strings.length; ii++) {
html += "<h2>An item</h2>";
html += "<div class='item'>";
anchor = app.createAnchor("click for further info...", "http://x.com?id=y");
html += strings[ii].replace(/<link>/g, anchor);
html += "</div>";
}
app.add(app.createHTML(html));
我认为.add(anchor)
在这种情况下不会起作用,因为我需要替换占位符字符串。