为什么这在我的网站上没有显示为 link?

Why doesn't this show as a link on my site?

试图让我的变量 "product" 中的 link 与屏幕上蓝色的 "Link naar website" 一起工作。相反,它显示为粗体文本...我无法点击。

var product = [
  'plantenwinkel.nl',
  'https://www.plantenwinkel.nl/image/data/templates/plantenwinkel/plantenwinkel.jpg',
  '6,30',
  'gratis',
  'https://www.plantenwinkel.nl/krulpitrus-juncus-effusus-spiralis-siergras?utm_source=tradetracker&utm_medium=affiliate&utm_campaign=feed&option=57498'
];

document.getElementById("product_logo").innerHTML = '<img src="'+product[1]+'" alt="'+product[0]+'" />';
document.getElementById("product_prijs").innerHTML = '<p>€ '+product[2]+'</p>';
document.getElementById("product_verzendkosten").innerHTML = '<p>'+product[3]+'</p>';
document.getElementById("product_link").innerHTML = '<link rel="stylesheet" href="'+product[4]+'">Link naar website</link>'; //Why doesn't this link work??!?!?!?

problem

使用 a 标签,更改为:

document.getElementById("product_link").innerHTML = '<link rel="stylesheet" href="'+product[4]+'">Link naar website</link>';

收件人:

document.getElementById("product_link").innerHTML = '<a href="'+product[4]+'">Link naar website</a>';