runoops.com

jQuery 杂项方法 第8页

jQuery 杂项 index() 方法

阅读(436)

实例 Run this code » 获得被点击的 <li> 元素相对于它的同级元素的 index: $("li").click(function(){ alert($(this).index()); }); 定义和用法 ind...

jQuery 杂项 get() 方法

阅读(408)

实例 Run this code » 获取第一个 <p> 元素的名称和值: $("button").click(function(){ x=$("p").get(0); $("div").text(x.nodeName + ":...

jQuery 杂项 each() 方法

阅读(376)

实例 Run this code » 输出每个 <li> 元素的文本: $("button").click(function(){ $("li").each(function(){ alert($(this).text()) }...

jQuery 杂项 data() 方法

阅读(369)

实例 Run this code » 向 <div> 元素附加数据,然后取回该数据: $("#btn1").click(function(){     $("div").data("greeting", "Hello World...