Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use assign and protocol in location

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to use assign and protocol in location". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn how to use assign and protocol in location.

How to use assign,protocol in location

_ window.location.protocol returns the web protocol used (http: or https:)

_ window.location.assign loads a new document

Window Location protocol

The _ window.location.protocol property returns the web protocol of the page.

Example

Displays the web protocol:

Document.getElementById ("demo"). InnerHTML = "Page Protocol is" + _ window.location.protocol

The result is:

The page protocol is http:

Window Location port

The _ window.location.port property returns the number of the Internet host port (of the current page).

Example

Displays the port number of the host:

Document.getElementById ("demo"). InnerHTML = "Port number is:" + _ window.location.port

Most browsers do not display the default port number (http is 8010 https and 443).

Window Location Assign

The _ window.location.assign () method loads the new document.

Example

Load a new document:

Function newDoc () {

_ window.location.assign ("https://www.w3school.com.cn")

}

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report