且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用RegEx和Jquery隐藏DIV元素

更新时间:2022-11-10 19:43:18

$('div.entry div').not('.imagebrowser').hide();

这将隐藏除"imagebrowser"类之外的所有"div"中的div.

This will hide all divs inside the "entry" div other than those with the class "imagebrowser".