<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.51texiao.cn/" /> <title>蚂蚁部落</title> <style type="text/css"> #antzone{ width:200px; margin:50px; background:green; display:none; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function(){ $("#show").text($("#antzone").is(":hidden")); }) }) </script> </head> <body> <div id="show"></div> <div id="antzone"></div> <input type="button" id="bt" value="查看效果"/> </body> </html
上面的代码实现了判断功能,这里是利用的:hidden选择器。
使用:visible也可以实现,和:hidden是一样的道理。