JS 隐藏Sharepoint中List Item View页面的某一个字段

Item显示的时候,隐藏掉一个字段。

在对应的页面(DispForm.aspx, EditForm.aspx, NewForm.aspx)添加Content Edit Webpart,加入JS。

<script type="text/javascript">



document.getElementsByName('SPBookmark_Raise_x0020_Reason')[0].parentElement.parentElement.parentElement.style.display='none';



</script>
SPBookmark_Raise_x0020_Reason是对应的字段名字。如图。

JS 隐藏Sharepoint中List Item View页面的某一个字段

隐藏前:

JS 隐藏Sharepoint中List Item View页面的某一个字段

隐藏后:

JS 隐藏Sharepoint中List Item View页面的某一个字段



                            

你可能感兴趣的:(SharePoint)