admin管理员组文章数量:1343363
I always saw in developer tool that the both the entities(baseURI and URL) shows the same URL, which is shown in address bar most of the time. Can someone provide me the scenarios when those are different and when do we use one over other. I have seen the description of mdn website but still confused regarding those two terms.
I always saw in developer tool that the both the entities(baseURI and URL) shows the same URL, which is shown in address bar most of the time. Can someone provide me the scenarios when those are different and when do we use one over other. I have seen the description of mdn website but still confused regarding those two terms.
Share Improve this question asked Sep 9, 2018 at 5:31 GhanshamGhansham 4981 gold badge6 silver badges20 bronze badges1 Answer
Reset to default 11For most intended purposes, it is the same. But it can differ in some scenarios.
- If you use a
<base>
tag in the HTML document. Lets say, you use the following HTML tag,
<base href = "https://example" />
Check the https://jsfiddle/kqbL0c4f/
and your URL is https://example/123
Your document.URL
and document.baseURI
would differ.
https://developer.mozilla/en-US/docs/Web/HTML/Element/base
The
<base>
HTML element specifies the base URL to use for all relative URLs in a document. There can be only one<base>
element in a document.
- If you create a document dynamically
本文标签: browserWhat is the difference between documentbaseURI and documentURL in javascriptStack Overflow
版权声明:本文标题:browser - What is the difference between document.baseURI and document.URL in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743677464a2520558.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论