使用按钮切换显示/隐藏div吗?
希望这是一个简单的问题。我有一个div
我想用按钮切换隐藏/显示
<div id="newpost">
回答:
看一下jQuery Toggle
<div id='content'>Hello World</div><input type='button' id='hideshow' value='hide/show'>
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');
});
});
以上是 使用按钮切换显示/隐藏div吗? 的全部内容, 来源链接: utcz.com/qa/399297.html