$(this).index()的理解(转)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$(this).index()的理解(转)相关的知识,希望对你有一定的参考价值。

1.$(this).index()的理解
$(selector).index()获得第一个匹配元素相对于其同级元素的 index 位置。例如:

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("ul li.hot").click(function(){
alert($(this).index());
});
});
</script>
</head>
<body>

<p>Click the button to get the index of the element with id="favorite", relative to the jQuery selector (class="hot"):</p>
<button>Get index</button>

<ul>
<li>Milk</li>
<li class="hot">Tea</li>
<li class="hot">Coffee</li>
</ul>

</body>
</html>

 

点击第一个拥有hot的li返回的index是1
而$(selector).index(element)获得元素相对于选择器的 index 位置。该元素可以通过 DOM 元素或 jQuery 选择器来指定。

 

以上是关于$(this).index()的理解(转)的主要内容,如果未能解决你的问题,请参考以下文章

如何理解call与apply(转)

转: 理解Python的With语句

$(obj).index(this)与$(this).index()异同讲解

Java中this和super的用法总结(转)

js 闭包,作用域,this 终结篇(转)

(转)javascript方法--bind()