如何使用javascript打印网页的某一级目录?

发布于 2024-11-02 22:04:19 字数 136 浏览 3 评论 0原文

假设我有一个网站:

website.com/categories/stuff/morestuff

如果我当前处于“morestuff”状态,我将如何打印“stuff”。 意思是打印第二个目录或第三个目录,依此类推。 谢谢。

Say I have a website:

website.com/categories/stuff/morestuff

How would i print 'stuff' if I am in 'morestuff' currently.
Meaning print the second directory or third and so on.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

昇り龍 2024-11-09 22:04:19

window.location.href 为您提供浏览器中的 url,因此您可以执行以下操作:

var arr = window.location.href.split('/')

现在您拥有数组中的所有页面

window.location.href gives you the url in the browser so you could do something like this:

var arr = window.location.href.split('/')

Now you have all the pages in an array

划一舟意中人 2024-11-09 22:04:19

获取字符串 document.location.href,在 / 字符处分割它,然后使用数组中倒数第二个字符串

var a = document.location.href.split('/');
alert (a[a.length-2]);

get the string document.location.href, split it at / characters, and then use the second to last string in the array

var a = document.location.href.split('/');
alert (a[a.length-2]);
北音执念 2024-11-09 22:04:19

您可以解析您的 window.location 变量。

它包含整个 URL。您可以从中解析出所需的信息。

You can parse your window.location variable.

It contains the whole URL. You can parse out the required information from it.

时光病人 2024-11-09 22:04:19

尝试变量 location.pathnamewindow.location 。我从 W3CMozilla 开发者中心,强烈推荐将两者作为初学者的信息来源!

Try the variables location.pathname and window.location . I got these from W3C and Mozilla's Developer Center and highly recommend both as a source of information for beginners!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文