码迷,mamicode.com
首页 > Web开发 > 详细

JQuery判断div(控件)是否为隐藏

时间:2015-05-04 09:57:34      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

1 以下是JavaScript 中判断div是否为隐藏代码引用片段:
2 
3 if (div.style.display == "none") {
4     div.style.display = "block";
5 }
6 else {
7     div.style.display = "none";
8 }
 1 以下是JQuery 中判断div是否为隐藏代码引用片段:
 2 
 3 <html xmlns="http://www.w3.org/1999/xhtml">
 4 <head>
 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 6 <title>jquery判断div是否为隐藏</title>
 7 <script src="jquery-1.3.2.js"></script>
 8 <script>
 9 $(document).ready(function(){
10     var temp= $("#test").is(":hidden"); //是否隐藏
11     var temp1= $("#test").is(":visible"); //是否可见
12     alert(temp);
13     alert(temp1);
14     
15     //$(".sFeature").click(function() {
16     //    var FeatureId = $(this).attr("id");
17     //    if($("#bp" + FeatureId).is(":hidden")) {
18     //        $("#bp" + FeatureId).show();
19     //    }
20     //    else {
21     //        $("#bp" + FeatureId).hide();
22     //    }
23     //});
24 });
25 </script>
26 </head>
27 <body>
28 <p onclick=test()>隐藏测试</p>
29 <div id="test" style="display:none"></div>
30 </body>
31 </html>

转载自:http://www.lezhu99.com/1741.html

JQuery判断div(控件)是否为隐藏

标签:

原文地址:http://www.cnblogs.com/HaoKeKe/p/4475359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!