提问者:小点点

手动设置网页链接



共3个答案

匿名用户

在javascript中可以用以下方式实现

    document.getElementById("myLink").onclick = function() {

        if(document.getElementById("abc").href == 
            "C:/Users/42191/Desktop/googlepage/generator.html")
        document.getElementById("abc").href="www.google.com"; 
    }

匿名用户

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="refresh" content="5; url='https://www.google.com'" />
  </head>
  <body>
    <p>Please click <a href="https://www.google.com">this link to direct now</a>.</p>
  </body>
</html>

如果您希望在更短的时间内重定向,请更改5。

匿名用户

我不想重定向,我只想放在那里,而不是://c/user.。。。 一些网页链接像“www.google.com”,但我想保持我的网页内容。