答案 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?