js 跳轉連接的幾種方式

一、跳轉連接 在當前窗口打開html

 

1框架

window.location.href="http://www.baidu.com"   等價於    <a href="baidu.com" target="_self">go baidu</a>  url

 

二、跳轉連接 在新窗口打開spa

 

1code

window.open("http://www.baidu.com")  等價於 <a href="baidu.com" target="_blank">go baidu</a>htm

 

 三、跳轉連接 返回上一頁對象

 

1ci

window.history.back(-1);get

 

  四、跳轉連接 iframe

1

self.location.href="baidu.com"

   self 指代當前窗口對象,屬於window 最上層的對象。

    location.href 指的是某window對象的url的地址

    self.location.href 指當前窗口的url地址,去掉self默認爲當前窗口的url地址,通常用於防止外部的引用

 top.location.href:爲引用test.html頁面url的父窗口對象的url

   若是你的網頁地址是:http://www.a.com,別人的是http://www.b.com, 他在他的頁面用iframe等框架引用你的http://www.a.com,那麼你能夠用:

1

2

3

if(top.location.href!=self.location.href){

       location.href="http://www.a.com";

}

 來轉向你的頁面,top指代的是主體窗口,這裏top.location.href返回http://www.b.com;

http://www.b.com!=http://www.a.com,返回爲真(true),則網頁重定向到你的網頁,作到防盜用的做用.
相關文章
相關標籤/搜索