jQuery使用手册
2010-09-14 13:06:31 来源:WEB开发网jQuery代码及功能:
functionjq(){
varf=$("div");
alert($(f).find("p").html())
}
运行:当点击id为test的元素时,弹出对话框文字为two,即div标签下p元素的内容。
each(fn)
说明:将函数作用于所有匹配的对象上
参数:fn (Function): 需要执行的函数
例子:
未执行jQuery前:
<imgsrc=http://tech.ddvip.com/2008-01/"1.jpg"/>
<imgsrc=http://tech.ddvip.com/2008-01/"1.jpg"/>
<ahref="http://p5s8.ddvip.com/index.php#"id="test"onClick="jq()">jQuery</a>
jQuery代码及功能:
functionjq(){
$("img").each(function(){
this.src=http://tech.ddvip.com/2008-01/"2.jpg";});
}
运行:当点击id为test的元素时,img标签的src都变成了2.jpg。
eq(pos)
说明:减少匹配对象到一个单独得dom元素
参数:pos (Number): 期望限制的索引,从0 开始
例子:
未执行jQuery前:
<p>Thisisjustatest.</p>
<p>Soisthis</p>
<ahref="http://p5s8.ddvip.com/index.php#"id="test"onClick="jq()">jQuery</a>
jQuery代码及功能:
functionjq(){
alert($("p").eq(1).html())
}
运行:当点击id为test的元素时,alert对话框显示:So is this,即第二个<p>标签的内容
get() get(num)
说明:获取匹配元素,get(num)返回匹配元素中的某一个元素
更多精彩
赞助商链接