点击按钮内容显示,再次点击隐藏
Posted Sunny_Lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击按钮内容显示,再次点击隐藏相关的知识,希望对你有一定的参考价值。
html代码:
<div class="box">领取红包</div> <p class="main on">恭喜您获得300元红包抵用券</p>
css:
.box{width: 100px;height: 30px;background: #FA6A2F;text-align: center;line-height: 30px;border-radius: 10px;cursor: pointer;color: #fff;} .on{display: none;}
js:
$(function () { var o=$(".main"); $(‘.box‘).on(‘click‘, function () { if(!o.hasClass(‘on‘)){ o.addClass(‘on‘) }else{ o.removeClass(‘on‘); } }); })
以上是关于点击按钮内容显示,再次点击隐藏的主要内容,如果未能解决你的问题,请参考以下文章