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

更多Jquery基础范例

2012-10-10 
更多Jquery基础实例1. 隐藏元素?htmlheadscript typetext/javascript src/jquery/jquery.js/

更多Jquery基础实例

1. 隐藏元素

?

<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){$(".ex .hide").click(function(){$(this).parents(".ex").hide("slow");});});</script><style type="text/css"> div.ex{background-color:#e5eecc;padding:7px;border:solid 1px #c3c3c3;}</style></head> <body><h3>Island Trading</h3><div type="button">Hide me</button><p>Contact: Helen Bennett<br /> Garden House Crowther Way<br />London</p></div><h3>Paris Trading</h3><div type="button">Hide me</button><p>Contact: Marie Bertrand<br /> 265, Boulevard Charonne<br />Paris</p></div></body></html>

?

?

2. 以上帖子中

热点排行