如何确定文本标签与单击的元素匹配的元素的索引号?
我有一个清单:
<ul>
<li data-cont="item one">this is one</li>
<li data-cont="item 2">this is second</li>
<li data-cont="one more">this is another one</li>
</ul>
...
<div>item one</div>
<div>item 2</div>
<div>one more</div>
单击其中一个 LI 时,我的屏幕需要在页面稍后向下滚动到匹配的 DIV 之一。
$('#li').click(function(){
var scrollNow = $(this).attr('data-cont');
$('html, body').animate({
scrollTop: $(
// here I need to scroll down to the item by index...
).offset().top
}, 500);
});