如何在html中动态创建菜单

发布于 2024-11-07 06:48:31 字数 171 浏览 2 评论 0原文

当我提到“动态”时,我不确定使用的术语是否正确。*

我希望在我网站的所有 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 技术交流群。

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

发布评论

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

评论(2

失眠症患者 2024-11-14 06:48:31

最简单的方法是使用 PHP。

命名所有文件,使其以 php 而不是 html 结尾,并创建一个名为 menu.php 的文件。

将您的菜单复制到 menu.php 中,然后在您想要菜单的其他页面中键入:

<? include("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:

<? include("menu.php"); ?>

and the menu will appear like magic!

I would also suggest SSI, but they are often disabled on shared hosting in my experience.

痴情换悲伤 2024-11-14 06:48:31

如果您使用任何一种“主要”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.

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