jQuery使用手册
2010-09-14 13:06:31 来源:WEB开发网参数:get (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").get(1).innerHTML);
}
运行:当点击id为test的元素时,alert对话框显示:So is this,即第二个<p>标签的内容
注意get和eq的区别,eq返回的是jQuery对象,get返回的是所匹配的dom对象,所有取$("p").eq(1)对象的内容用jQuery方法html(),而取$("p").get(1)的内容用innerHTML
index(obj)
说明:返回对象索引
参数:obj (Object): 要查找的对象
例子:
未执行jQuery前:
<divid="test1"></div>
<divid="test2"></div>
<ahref="http://p5s8.ddvip.com/index.php#"id="test"onClick="jq()">jQuery</a>
jQuery代码及功能:
functionjq(){
alert($("div").index(document.getElementById('test1')));
alert($("div").index(document.getElementById('test2')));
}
运行:当点击id为test的元素时,两次弹出alert对话框分别显示0,1
size() Length
说明:当前匹配对象的数量,两者等价
例子:
未执行jQuery前:
更多精彩
赞助商链接