JS in document. The difference between URL and window.location.href

Source: Internet
Author: User

In fact, the difference between the two objects, document and window, already contains the answer to this question.

Document represents a File object, and window represents a Windows object.

There can be a lot of document objects under a window. Each document has a URL.

But that's not all the difference. When you CTRL + F5 a link http://yourhost.com/#fragment

Print alert (document. URL); and alert (WINDOW.LOCATION.HREF);

found that the values of these two are different,

Document. The value of the URL is "http://yourhost.com/"

The value of Window.location.href is "http://yourhost.com/#fragment"

One #fragment

Therefore, if you want to use fragment for the corresponding treatment, it is best to use window.location.href

Otherwise, there will be a strange mistake.

Another: The following is the screen page use to view the source code and copy the contents of the page JS code

Document.oncontextmenu=function (e) {return false;}
Document.onmousedown = function () {
return false;
};
Document.onselectstart = function () {
return false;
};

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.