标签: javascript html css
显示和隐藏.box类
$('.popup').on('click', function(){ $('.box').toggleClass('show'); });
CSS
.show { display: block; }