隐藏“页面” SharePoint 上的按钮
隐藏“页面”链接的最简单方法是什么?
谢谢。
What is the easiest way to hide the "Page" link?
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
隐藏“页面”链接的最简单方法是什么?
谢谢。
What is the easiest way to hide the "Page" link?
Thank You.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
以下是隐藏“页面”选项卡的代码隐藏和客户端方法
代码隐藏:
通过 MSDN 论坛隐藏/禁用功能区项目:
和来自默认服务器功能区自定义位置它是
Ribbon.WebPartPage
选项卡javascript/jQuery:
检查页面,我们可以看到页面选项卡埋得很深
但使用一些快速而肮脏的 javascript 或 jQuery,你可以隐藏该选项卡
javascript:
jQuery:
I'd认为代码隐藏方法是更干净的方法,但客户端脚本也可以完成工作。
Here's are code behind and client side ways of hiding the Page tab
Code Behind:
via MSDN forums Hide/disable ribbon items:
and from Default Server Ribbon Customization Locations it is the
Ribbon.WebPartPage
tabjavascript/jQuery:
inspecting the page we can see the Page tab is buried deep
but with some quick and dirty javascript or jQuery you can hide that tab
javascript:
jQuery:
I'd consider the code-behind method to be the cleaner way but client side script gets the job done as well.
除了此处提到的解决方案之外,要完全隐藏页面选项卡,您应该使用 Ribbon.WebPartPage 而不是 Ribbon.ListItem.New.NewFolder。
In addition to the solution mentioned here already, to hide the page tab completely you should use
Ribbon.WebPartPage
instead ofRibbon.ListItem.New.NewFolder
.