我有一个复选框,如果我检查它折叠共享点列表,如果我取消选中它应该扩展所有如何执行此操作。
答案 0 :(得分:2)
如果要隐藏它,可以使用JavaScript为其添加隐藏样式。
function checkboxHandler() {
var el = document.getElementById('yourCheckBoxId');
if(el.value){
document.getElementById('sharePointId').setAttribute('style', 'display:none;');
}else{
document.getElementById('sharePointId').setAttribute('style', 'display:block;');
}
}
如果你使用像jQuery这样的漂亮的JavaScript库,你可以使这段代码更简单,并添加一些甜蜜的动画。