关于html:是否有可以获取页面源URL的JQuery变量?

Is there a JQuery variable that can get the source URL of a page?

本问题已经有最佳答案,请猛点这里访问。

我正在寻找一个Jquery变量,用于标识从中打开页面的源URL。
目的是做一个这样的代码:如果你从页面B访问页面A,那么...... /如果从页面C访问页面A,那么......

(注意:我不使用php)

谢谢,


使用window.location.href;,您将获得完整的URL(https://test.com/itm/012458.html)
使用window.location.origin;,您将获得基本URL https://test.com
仅使用window.location.pathname;路径(/itm/012458.html)
对不起,我想我误解了你。
你需要另一个用户写道:var x = document.referrer;