10.跳转

Posted 雲韵檀鈊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.跳转相关的知识,希望对你有一定的参考价值。

1.<a href="http://www.baidu.com">a标签.baidu.com</a>
2.
  <a href="javascript:;" onclick="openurl()" >js跳转.baidu.com</a>  
  function openurl(){
     window.location.href="http://www.baidu.com"
  }
3.跳转新页面打开
      超链接<a href="http://www.jb51.net" title="脚本之家" target="_blank">Welcome</a>
      等效于js代码
      window.open("http://www.jb51.net"); 
3.
    <head>  
    <!--只是刷新不跳转到其他页面 -->  
    <meta http-equiv="refresh" content="5">  
    <!--定时转到其他页面 -->  
    <meta http-equiv="refresh" content="5;url=index.html">   
    </head> 
4.
  html跳转上一页的方式

    window.history.go(-1);或者window.history.back(-1);

        <a href=”#” onClick=”JavaScript :history.back(1);”>返回上一页</a>  
        <a href=”#” onClick=”javascript :history.Go(-1);”>返回上一页</a>  

    在javascript中写跳转上一页
        <div id="btn">按钮</div>  

    <script type="text/javascript">  
        var wrong = document.getElementById(‘btn‘);  
        wrong.onclick = function() {   
        window.history.go(-1);//返回上一页  
        window.history.back(-1);//返回上一页  
        }  
    </script> 
 

以上是关于10.跳转的主要内容,如果未能解决你的问题,请参考以下文章

IOS系统设置页面跳转

iframe中页面转跳的问题

IdeaVim快捷键

IdeaVim快捷键

用a标签实现域名转跳的网页代码

30秒后自动跳转网页