Zend_Navigation_Container 设置分隔符
使用 Zend_Navigation 时有没有办法设置页面分隔符?
例如,我在视图中调用 $this->navigation()->menu() 以无序列表的形式呈现导航菜单。我希望所有菜单项之间有一个分隔符,例如|。
因此,每个不是最后的菜单项都将以:
</a> | </li>
Is there a way when using Zend_Navigation to set a separator for pages?
For example, I call $this->navigation()->menu() in my view to render a navigation menu in a form of an unordered list. I would like there to be a separator between all menu items, for example |.
So, every menu item which is not last, would end with:
</a> | </li>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以像这样在 CSS 中做到这一点。
这里的反向逻辑是为了浏览器兼容性。 IE < 9 不支持最后一个孩子,但支持第一个孩子。
You can do it in CSS like this.
The reverse logic here is for browser compatibility. IE < 9 doesn't support last-child but supports first-child.