我在页面上有一个简单的JS测验,可以生成问题结果的答案并将它们放入html中。在几个答案中,我想说出更多信息点击这里'。如何在JS字符串中添加链接到HTML中?
我是JS的新手,所以不确定如何解决这个问题......
这是被调用的JS:
<iframe width="560" height="315" src="https://www.youtube.com/embed/b4Bj7Zb-YD4" frameborder="0" allowfullscreen></iframe>
&#13;
答案 0 :(得分:1)
您可以使用link()方法在JavaScript中包含链接:
var str = "This is the text that will show up";
var textToPrint = str.link("http://samplewebsite.com");
您现在可以打印textToPrint
,它会像这样打印出来:This is the text that will show up。