摘要: <html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){$(".ex .hide").click(function(){$(this).parents(".d").hide("slow");});});& 阅读全文
posted @ 2012-09-05 22:14 Tom Fan 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Jqurey的基本语法:jQuery 元素选择器1,$(this).hide():隐藏当前的元素,$(this)取得当前元素2,$(#tag1).hide():隐藏ID等于“tag1”的所有元素,$(#tag1)取得ID为tag1的所有元素3,$(.tag1).hide():隐藏Class等于“tag1”的所有元素,$(.tag1)取得Class为tag1的所有元素4,$(p).hide():隐藏该页面的所有的p元素,$(p)取得页面的所有的p元素5,$("p.intro").hide():隐藏该页面下所有的P元素下Class="intro"的元素,$( 阅读全文
posted @ 2012-09-05 22:07 Tom Fan 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 第一个Jqurey例子<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){$("button").click(function(){$("p").hide();});});</script></head 阅读全文
posted @ 2012-09-05 21:49 Tom Fan 阅读(241) 评论(0) 推荐(0) 编辑