摘要:
<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");});});& 阅读全文
摘要:
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"的元素,$( 阅读全文
摘要:
第一个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 阅读全文