标签:
//js 元素隐藏 document.getElementById(‘li11‘).style.display = ‘none‘; //js 元素显示 document.getElementById(‘li11‘).style.display = ‘block‘; //jquery元素隐藏 $(‘#li11‘).hide(); //jquery元素显示 $(‘#li11‘).show();
//还有一种方法,在css中设置
.hide{ display: none; }
然后通过js
$(‘#li11‘).addClass(‘hide‘);
是不是很赞
标签:
原文地址:http://www.cnblogs.com/sflik/p/4394629.html