正文标签内的 HTML 重定向?

问题描述 投票:0回答:3

是否有一种方法可以提供与可在 html 文档正文中使用的元重定向相同的结果?或者正文中对 CSS 的引用?我一直在寻找,但我唯一能找到的就是利用其他技术。

注意这是针对 iOS UIWebView 的,所以没有 php,我不想加载任何额外的 js。

html ios http-redirect uiwebview
3个回答
7
投票

如果你会使用Javascript,这样的东西应该对你有帮助:

<script type="text/javascript">
    window.location = "http://www.google.com/";
</script>

检查此链接,了解如何将其放置在可以使用 “onclick”“on body load” 等调用的函数中...

http://www.tizag.com/javascriptT/javascriptredirect.php


编辑:

关于此的另一件好事情:

https://developer.mozilla.org/en/window.location


5
投票

我会使用meta和js重定向,你也可能对使用rel =“canonical”

对SEO感兴趣
<html>
<head>
    <link rel="canonical" href="http://stackoverflow.com/"/>        
    <script type="text/javascript">            
        window.location.replace("http://stackoverflow.com"); 
    </script>
    <title>Redirection</title>
</head>
<body>
    <noscript>
        <meta http-equiv="refresh" content="0;URL=https://stackoverflow.com/">
    </noscript>
    If you are not redirected automatically, follow the <a href='https://stackoverflow.com'>link </a>
</body>


0
投票

不需要 onload 事件,无需用户交互即可工作

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <script>
      let url = "https://www.w3docs.com";
      window.location.href = url;
    </script>
  </body>
</html>
© www.soinside.com 2019 - 2024. All rights reserved.