我不明白为什么,但我在sharepoint上从ms项目构建了甘特图,有很多子任务,我想默认隐藏子任务。
不幸的是,我放在甘特图上方的任何脚本都不起作用并产生任何东西......
我尝试了每种类型的链接,没有任何工作......我无法理解问题..我尝试了这里解释的内容,使用该代码:为什么这个 jQuery 在我的 Sharepoint 页面上不起作用? 但没有任何工作在此处输入图像描述
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script>
jQuery(document).ready(function(){
SP.SOD.executeFunc('sp.js', 'SP.ClientContext', run);
});
function run(){
jQuery('div[class="ms-vb itx"]').find('span[style]').each(function(){
if(jQuery(this).css('margin-left')!="0px"){
jQuery(this).parent().parent().parent().hide();
}
});
}
</script>
谢谢