获得某个element在parent中的index。
jquery提供了index接口,可以直接拿到。
如果没有jquery的话,
将document查询到的HTML Collection转为Array,
然后使用Array的index接口拿到index。
1 2 3 4 |
var ItemList = Array.prototype.slice.call( document.getElementsByClassName("item")); var _currentFocus = document.getElementsByClassName("item focus")[0]; var _position = ItemList.indexOf(_currentFocus); |