Hide SharePoint web part using javascript onclick method

∥☆過路亽.° 提交于 2019-12-13 05:28:10

问题


i need a little bit of help, I am trying to use JavaScript embedded in a SharePoint Content editor web part to hide specific web parts as the items are clicked, however it does not seem to work can anyone give me any hints/ideas?

<script type="text/javascript">
function hidepart() 
var hlf = document.getElementById("MSOZoneCell_WebPartWPQ3");
    MSOZoneCell_WebPartWPQ3.style.display="none";
    }
</script>
enter code here


 <a id="myLink" href="#" onclick="hidepart();return false;">Test</a>    

回答1:


You could use the following code :

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script language="JavaScript">
function hidepart()
 {
 $('#MSOZoneCell_WebPartWPQ3').hide(); 
 }
</script>
enter code here
<a id="myLink" href="#" onclick="hidepart();return false;">Test</a> 



回答2:


<script type="text/javascript">
function hidepart() {
var hlf = document.getElementById("MSOZoneCell_WebPartWPQ3");
hlf.style.display="none";
}
</script>

enter code here

<a id="myLink" href="#" onclick="hidepart();return false;">Test</a> 

you misspelled function and you were not using the hlf variable correctly. This should do it

ok fixed you were missing a opening bracket too




回答3:


I've managed to get it working like this, thank you harshini, your version also seems to work and looks a lot nicer.

<script type="text/javascript">

function hidepart1() {
document.getElementById("MSOZoneCell_WebPartWPQ5").style.display = "none";} 
</script>

<a id="myLink" href="#" onclick="hidepart1();return false;">Test</a> 

Thanks guys for helping me out thought I should share this with you, maybe someone else needs this



来源:https://stackoverflow.com/questions/19226720/hide-sharepoint-web-part-using-javascript-onclick-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!