如何使用javascript打印网页的某一级目录?
假设我有一个网站:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
window.location.href 为您提供浏览器中的 url,因此您可以执行以下操作:
现在您拥有数组中的所有页面
window.location.href gives you the url in the browser so you could do something like this:
Now you have all the pages in an array
获取字符串 document.location.href,在 / 字符处分割它,然后使用数组中倒数第二个字符串
get the string document.location.href, split it at / characters, and then use the second to last string in the array
您可以解析您的
window.location
变量。它包含整个 URL。您可以从中解析出所需的信息。
You can parse your
window.location
variable.It contains the whole URL. You can parse out the required information from it.
尝试变量
location.pathname
和window.location
。我从 W3C 和 Mozilla 开发者中心,强烈推荐将两者作为初学者的信息来源!Try the variables
location.pathname
andwindow.location
. I got these from W3C and Mozilla's Developer Center and highly recommend both as a source of information for beginners!