admin管理员组文章数量:1339477
I am wondering how I would get JavaScript to check if a user is on a certain URL so i can build an if statement from the result.
My reasoning is that if a user clicks on a link in the menu and they are currently on trucks.php the javascript will redirect them to a certain page. If they are not on trucks.php they will be directed to a different page.
Cheers guys.
I am wondering how I would get JavaScript to check if a user is on a certain URL so i can build an if statement from the result.
My reasoning is that if a user clicks on a link in the menu and they are currently on trucks.php the javascript will redirect them to a certain page. If they are not on trucks.php they will be directed to a different page.
Cheers guys.
Share Improve this question asked Dec 2, 2010 at 14:01 Samuel MeddowsSamuel Meddows 36.8k13 gold badges41 silver badges37 bronze badges3 Answers
Reset to default 10The current location is in location.href
.
The location object also contains some other useful fields:
- location.hash: The part after the # in the URL
- location.host: Hostname including port (if specified)
- location.hostname: Just the hostname
- location.pathname: The requested URI without protocol/host/port; starting with a /
- location.port: The port - only if one is specified in the URL
- location.protocol: Usually 'http:' or 'https:' - mind the colon at the end
In your case the most fail-safe way to check if the filename is trucks.php is this:
var parts = location.pathname.split('/');
if(parts[parts.length - 1] == 'trucks.php') {
location.href = 'some-other-page';
}
If you want to redirect without keeping the current page in history, use the following code instead of the location.href
assignment:
location.replace('some-other-page');
Use window.location.href
to get the current URL, or window.location.pathname
to get just the path. For your specific problem, just the path name is required for the solution:
if (window.location.pathname == "/trucks.php")
window.location = "/somewhereelse.php";
Check out the MDC documentation for window.location.
Use window.location
本文标签: JavaScript current URL checkStack Overflow
版权声明:本文标题:JavaScript current URL check - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743584884a2506278.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论