Jquery implements hidden and displayed instances of controls

  • 2020-03-30 01:38:39
  • OfStack


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>jquery</title>
<script type="text/javascript" src="jquery-1[1].3.2.min.js"></script>
<style type="text/css">
.big{ font-size:30px; color:#FF0000;}
</style>
<script type="text/javascript">
$(function(){
$('#click_event').click(function(){
 $('#click_event').html('');
if($('#hidden_enent').is(':hidden'))
{
 $('#hidden_enent').show();
 $('#click_event').html(' hidden ');
}
else
{
 $('#hidden_enent').hide();
 $('#click_event').html(' According to ');
 }
})
})
</script>
</head>
<body>
<div id="click_event" style="cursor:pointer"> hidden </div>
<div id="hidden_enent"> Test the hidden </div>
</body>
</html>


Related articles: