使用jQuery我可以使用以下jQuery代码隐藏“SharePoint欢迎”菜单中的“以其他用户身份登录”,“我的设置”和“个性化此页面”选项:
jQuery(document).ready(function($){
$("[text='Sign in as Different User']").remove();
$("[text='My Settings']").remove();
$("[text='Personalize this Page']").remove();
});
但是,我无法使用相同的脚本隐藏“我的网站”和“我的个人资料”选项,即
jQuery(document).ready(function($){
$("[text='My Site']").remove();
$("[text='My Profile']").remove();
});
请问,我如何使用jQuery解决这个问题?
答案 0 :(得分:2)
您也可以使用CSS代替使用JQuery:
#mp1_0_0_Anchor, #mp1_0_1_Anchor {
display: none;
}