您的位置:首页 > Web前端 > JavaScript

JS 收缩 展开效果

2013-04-17 17:54 459 查看
<!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>

<title></title>

<style type="text/css">

.imgclass

{

width:200px;height:200px;

}

table tr td

{

width:300px;height:300px

}

</style>

<script src="jquery-1.9.1.js" type="text/javascript"></script>

<script type="text/javascript">

$(function () {

$('#Button1').click(function () {

//获取的是所有类型(tagname)为img的元素

//$('img').hide(3000);

//$('img').show(3000);

//获取的是所有class属性的值为“imgclass”的元素

$('.imgclass').hide(3000);

$('.imgclass').show(3000);

})

})

</script>

</head>

<body>

<table>

<tr>

<td>

<img id="img1" src="images/1.jpg" class="imgclass" />

</td>

<td>

<img id="img2" src="images/2.jpg" class="imgclass" />

</td>

</tr>

<tr>

<td>

<img id="img3" src="images/3.jpg" class="imgclass" />

</td>

<td>

<img id="img4" src="images/4.jpg" class="imgclass" />

</td>

</tr>

</table>

<input id="Button1" type="button" value="玩儿" class="imgclass" /><br />

</body>

</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: