首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery判断div是不是隐藏实例

2013-03-19 
jquery判断div是否隐藏实例?jquery判断div是否隐藏实例分类:?jquery2010-07-26 15:32?7969人阅读?评论(4)?

jquery判断div是否隐藏实例
?

jquery判断div是否隐藏实例分类:?jquery2010-07-26 15:32?7969人阅读?评论(4)?收藏?举报jquerydivxhtmlhtmlfunction测试

<!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=utf-8"/>

<title>绑定函数</title>

<script src="jquery-1.3.2.js"></script>

<script>

$(document).ready(function(){

var temp= $("#test").is(":hidden");//是否隐藏

var temp1= $("#test").is(":visible");//是否可见

alert(temp) ;

alert(temp1) ;

}); </script>

</head>

<body>

<p onclick='test()'>刷新测试</p>

<div id="test" style="display:none"></div>

</body>

</html>

分类:?jquery2010-07-26 15:32?7969人阅读?评论(4)?收藏?举报jquerydivxhtmlhtmlfunction测试

<!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=utf-8"/>

<title>绑定函数</title>

<script src="jquery-1.3.2.js"></script>

<script>

$(document).ready(function(){

var temp= $("#test").is(":hidden");//是否隐藏

var temp1= $("#test").is(":visible");//是否可见

alert(temp) ;

alert(temp1) ;

}); </script>

</head>

<body>

<p onclick='test()'>刷新测试</p>

<div id="test" style="display:none"></div>

</body>

</html>

热点排行