为什么此代码没有链接?

时间:2017-12-24 17:59:33

标签: html web target

<html>
  <body>
    <a href="https://account.mojang.com/login" id="clickHere" target="_blank">Click Here</a>
  </body>
</html>

当我运行html文件时,为什么这个html代码没有进入网站https://account.mojang.com/login

1 个答案:

答案 0 :(得分:2)

除非您点击链接,否则不会发生任何事情。

要自动启动,请使用:

<script>window.location.href = 'https://account.mojang.com/login';</script>