javascript中的location用法簡單介紹

來源:互聯網
上載者:User

先前寫了一片用window.location.href實現重新整理另個架構頁面 ,特此我看了一下locaiton的詳細用法,對此有點改進,現在我將他整理成js,方便查閱,也貼上和朋友們分享一下,具體如下:

第一、簡單介紹一下location屬性、用法以及相關樣本:
Location
包含了關於當前 URL 的資訊。

描述
location 對象描述了與一個給定的 Window 對象關聯的完整 URL。location 對象的每個屬性都描述了 URL 的不同特性。
通常情況下,一個 URL 會有下面的格式:

協議//主機:連接埠/路徑名稱#雜湊標識?搜尋條件 例如:

http://skylaugh.cnblogs.com/index.html#topic1?x=7&y=2 這些部分是滿足下列需求的:

“協議”是 URL 的起始部分,直到包含到第一個冒號。
“主機”描述了主機和網域名稱,或者一個網路主機的 IP 位址。
“連接埠”描述了伺服器用於通訊的通訊連接埠。
路徑名稱描述了 URL 的路徑方面的資訊。
“雜湊標識”描述了 URL 中的錨名稱,包括雜湊掩碼(#)。此屬性只應用於 HTTP 的 URL。
“搜尋條件”描述了該 URL 中的任何查詢資訊,包括問號。此屬性只應用於 HTTP 的 URL。“搜尋條件”字串包含變數和值的配對;每對之間由一個“&”串連。

屬性概覽
hash: Specifies an anchor name in the URL.
host: Specifies the host and domain name, or IP address, of a network host.
hostname: Specifies the host:port portion of the URL.
href: Specifies the entire URL.
pathname: Specifies the URL-path portion of the URL.
port: Specifies the communications port that the server uses.
protocol: Specifies the beginning of the URL, including the colon.
search: Specifies a query.

方法概覽
reload Forces a reload of the window's current document.
replace Loads the specified URL over the current history entry.

主要功能樣本,其他類同:
hash:

newWindow.location.href = http://skylaugh.cnblogs.com
newWindow.location.hash = #59831

host
A string specifying the server name, subdomain, and domain name.
newWindow.location.href = http://skylaugh.cnblogs.com
newWindow.location.host = skylaugh.cnblogs.com

href
A string specifying the entire URL.

window.location.href="http://home.netscape.com/"

pathname
A string specifying the URL-path portion of the URL.

search
A string beginning with a question mark that specifies any query information in the URL.

newWindow.location.href = http://skylaugh.cnblogs.com
newWindow.location.search = ?newsid=111

二、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.