Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Orchard 1.5 添加要为内容菜单项输出的类和/或 ID?
转到内容/内容部分,编辑菜单内容部分并添加一个“CssClass”文本字段。然后,覆盖 menuitem.cshtml 的模板,并在该var tag =行之后添加:
var tag =
if (Model.CssClass != null) { tag.AddCssClass(Model.ContentItem.Menu.CssClass.Value); }
这应该够了吧。