用按钮切换显示/隐藏div?

2022-01-30 00:00:00 jquery javascript css

希望这是一个简单的问题.我有一个 div 我想用按钮切换隐藏/显示

Hopefully this is an easy question. I have a div that I want to toggle hidden/shown with a button

<div id="newpost">

推荐答案

看看jQuery Toggle

HTML:

<div id='content'>Hello World</div>
<input type='button' id='hideshow' value='hide/show'>

jQuery:

jQuery(document).ready(function(){
    jQuery('#hideshow').live('click', function(event) {        
         jQuery('#content').toggle('show');
    });
});

对于 jQuery 1.7 和更新的版本使用

For versions of jQuery 1.7 and newer use

jQuery(document).ready(function(){
    jQuery('#hideshow').on('click', function(event) {        
        jQuery('#content').toggle('show');
    });
});

作为参考,请查看此demo

For reference, kindly check this demo

相关文章