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

JQuery课程-隐藏*显示

2012-12-27 
JQuery教程---隐藏*显示htmlheadscript typetext/javascript src/jquery/jquery.js/script

JQuery教程---隐藏*显示

<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){  $("#b1").click(function(){  $("p").hide(1000);  });$("#b2").click(function(){$("p").show(1000);});});</script></head><body><button id="b1" type="button">隐藏</button><button id="b2" type="button">显示</button><p>This is a paragraph with little content.</p><p>This is another small paragraph.</p></body></html>


热点排行