小编典典

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

javascript

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

<div id="newpost">

阅读 381

收藏
2020-04-25

共1个答案

小编典典

看一下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及更高版本

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