jquery toggle

<script src='jquery-2.1.4.js'></script>
<input type='text' />
<input type='text' />
<button>hide</button>
<script>
	$(function(){
		$('button').click(function(){
			$('input').eq(1).toggle(
				1000,
				function(){
					button_info = $('button').html();
					if (button_info=='hide') {
						$('button').html('show');
					} else {
						$('button').html('hide');
					}
					
				}
			);
		});
		
		
	});	
</script>


你可能感兴趣的:(jquery toggle)