javascript中location.href地址跳轉詳解

來源:互聯網
上載者:User

javascript中的location.href有很多種用法,主要如下。
 
top.location.href=”url”       在頂層頁面開啟url(跳出架構)

self.location.href=”url”       僅在本頁面開啟url地址

parent.location.href=”url”   在父視窗開啟Url地址

this.location.href=”url”    用法和self的用法一致

location.href=”/url” 當前頁面開啟URL頁面

windows.location.href=”/url” 當前頁面開啟URL頁面,前面三個用法相同。


如果頁面中自訂了frame,那麼可將parent self top換為自訂frame的名稱,效果是在frame視窗開啟url地址

此外,window.location.href=window.location.href;和window.location.Reload()和都是重新整理當前頁面。區別在於是否有提交資料。當有提交資料時,window.location.Reload()會提示是否提交,window.location.href=window.location.href;則是向指定的url提交資料

location之頁面跳轉js如下:

 代碼如下 複製代碼

//簡單跳轉
function gotoPage(url)
{
// eg. var url = "newsview.html?catalogid="+catalogID+"&pageid="+pageid;
window.location = url;
}
// 對location用法的升級,為單個頁面傳遞參數
function goto_catalog(iCat)
{
if(iCat<=0)
{
top.location = "../index.aspx"; // top出去
}
else
{
window.location = "../newsCat.aspx?catid="+iCat;
}
}
// 對指定架構進行跳轉頁面,二種方法皆可用
function goto_iframe(url)
{
parent.mainFrame.location = "../index.aspx"; //
// parent.document.getElementById("mainFrame").src = "../index.aspx";// use dom to change page // 同時我增加了dom的寫法
}
// 對指定架構進行跳轉頁面,因為 parent.iframename.location="../index.aspx"; 方法不能實行,主要是 "parent.iframename" 中的iframename在js中被預設為節點,而不能把傳遞過來的參數轉換過來,所以用dom實現了該傳遞二個參數的架構跳轉頁面,希望那位仁兄不吝賜教!
function goto_iframe(iframename,url) 
{
parent.document.getElementById(iframename).src = "../index.aspx";// use dom to change page by iframeName

//}
// 回到首頁
function gohome()
{
top.location = "/index.aspx";
}
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.