控制台Javascript标签

时间:2018-07-03 11:47:05

标签: console

如何制作链接文本?我想展示一下我是如何尝试的。 Before After Result

1 个答案:

答案 0 :(得分:1)

在HTML中,链接是用标记定义的:

<a href="url">link text</a>

示例:

<!DOCTYPE html>
<html>
<body>

<h2>HTML Links</h2>
<p><a href="https://www.google.com">Visit google</a></p>

</body>
</html>

使用javascript参见此处How do I create a link using javascript?