<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script>
$(function(){
$("#btn").click(function(ev){
if ($(this).text()==="显示简介") {
alert('yes');
}else {
alert('no');
}
});
})
</script>
</head>
<body>
<button id="btn">
显示简介
</button>
<div id="ppt" style="display: none;">11111</div>
</body>
路过2017-12-02 09:08:14
Can there be branches inside the button?
There is a big difference between "===" and "=="