admin管理员组文章数量:1344532
Please help to get current URL from which this page is called ? what is wrong with this ?, becaz alert es with empty.
<html>
<head>
<script>
function check()
{
alert(document.referrer);
}
</script>
</head>
<body onload="check()">
</body>
</html>
Please help to get current URL from which this page is called ? what is wrong with this ?, becaz alert es with empty.
<html>
<head>
<script>
function check()
{
alert(document.referrer);
}
</script>
</head>
<body onload="check()">
</body>
</html>
Share
Improve this question
edited Jul 19, 2013 at 10:48
Jericho
asked Jul 19, 2013 at 10:37
JerichoJericho
11k39 gold badges123 silver badges206 bronze badges
5
- 2 Get what URL? If the referrer is empty, then it is because there isn't one. – Quentin Commented Jul 19, 2013 at 10:41
- What are you attempting to achieve? Referrer checking is not usually a fruitful task – bobince Commented Jul 19, 2013 at 10:47
- just wanted current url from which this page is called. – Jericho Commented Jul 19, 2013 at 10:47
- Thanks for all your replies – Jericho Commented Jul 19, 2013 at 10:47
- Just updated the question. – Jericho Commented Jul 19, 2013 at 10:48
4 Answers
Reset to default 6According to MDN document.referrer
The value is an empty string if the user navigated to the page directly (not through a link, but, for example, via a bookmark).
You if want to get the current page url then you can use the
window.location.href
Replace your alert with any one of these method.It will work.
alert(document.URL)
alert(window.location.href)
alert(document.location.href)
alert(window.location.pathname)
function test(){
alert(Window.location.href);
};
or if you want to go for particular URL do this
function test(){
$(window.location).attr('href', '../your link');
};
To get URL use,
var url = window.location.href;
本文标签: javascripthow to get url in htmldocumentreferrer is emptyStack Overflow
版权声明:本文标题:javascript - how to get url in html , document.referrer is empty - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743796998a2540613.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论