如何在html中动态创建菜单
当我提到“动态”时,我不确定使用的术语是否正确。*
我希望在我网站的所有 80 个页面上显示一个简单的一级菜单。菜单项将定期更改 - 添加新项目,删除一些项目等...创建此菜单的最佳方法是什么,这样我就不必更新所有 80 个页面?仅供参考:我对所有脚本语言都不太了解。谢谢。**
I'm not sure if I am using the proper term when I refer to "dynamically. *
I want to have a simple, one level, menu displayed on all 80 pages of my site. The menu items will change periodically - new items added, some removed, etc... What is the best way to create this menu so I don't have to update all 80 pages? FYI: I'm not too knowledgeable in all the scripting languages. Thank you.**
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 PHP。
命名所有文件,使其以 php 而不是 html 结尾,并创建一个名为 menu.php 的文件。
将您的菜单复制到 menu.php 中,然后在您想要菜单的其他页面中键入:
,菜单就会像魔术一样出现!
我还建议 SSI,但根据我的经验,它们经常在共享主机上被禁用。
The simplest way is to use PHP.
Name all your files so they end in php instead of html, and make a file called menu.php.
Copy your menu into menu.php, then no your other pages where you want the menu, type:
and the menu will appear like magic!
I would also suggest SSI, but they are often disabled on shared hosting in my experience.
如果您使用任何一种“主要”Web 框架,请创建一个母版页。你在那里放了一个孤独的 HTML 标签,所以我不确定这是否需要纯粹的 HTML 而不是其他的。
Create a master page if your working in any one of the "major" web frameworks. You put a lonely HTML tag up there so I'm not sure if this NEEDS to be purely HTML and nothing else.