希望这是一个简单的问题。我有一个div我想用按钮切换隐藏/显示
div
<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及更高版本
jQuery(document).ready(function(){ jQuery('#hideshow').on('click', function(event) { jQuery('#content').toggle('show'); }); });