javascript:如何根据子目录包含文件
我需要你的帮助。我需要根据当前子目录在模板上包含外部文件(菜单)。 对于即;我有两个子目录:
http://subdomain.domain.com/xx/index.html< /a>
http://subdomain.domain.com/yy/index.html
每个子目录都有自己的菜单文件。
如何在 JavaScript 上创建此条件脚本:
如果子目录是 xx,则包含 menu-xx.html
如果子目录是 yy,则包含 menu-yy.html
else include menu.html
感谢您的帮助
I need your help. I need to include external files (menu) on a template depending on the current sub directory.
For ie; I have two sub directories:
http://subdomain.domain.com/xx/index.html
http://subdomain.domain.com/yy/index.html
and each sub directory has own menu file.
How to create this conditional script on JavaScript:
if the sub directory is xx include menu-xx.html
if the sub directory is yy include menu-yy.html
else
include menu.html
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
等等...当做出这个决定时,您将进入这两个 html 页面之一?如果是这种情况,您将查找与当前文档相关的 html 文件 - 假设它位于该子目录中。
也就是说,如果我正确地阅读了这篇文章...
如果没有,那么您是否使用
window.location
进行了探索?https://developer.mozilla.org/en/window.location
Wait... when this decision is being made you'll be in one of those two html pages? If thats the case you look for the html file thats relative to the current document - assuming its in that sub-directory.
That is if I'm reading this correctly...
If not, then you have you explored using
window.location
?https://developer.mozilla.org/en/window.location