- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已将点击事件添加到父 #carousel-thumbs。
carouselThumbsContainer.onclick = function(ev) {
var target = ev.target; // which child was actually clicked
}
<ul id="carousel-thumbs" class="l-grid">
<li class="active"><a class="active" href="#"><img src="img/carousel-1-th.jpg" /></a></li>
<li><a href="#"><img src="img/carousel-2-th.jpg" /></a></li>
<li><a href="#"><img src="img/carousel-3-th.jpg" /></a></li>
<li><a href="#"><img src="img/carousel-4-th.jpg" /></a></li>
</ul>
我想返回被点击元素相对于其父元素的索引。所以如果用户点击第二个
////////////////////////////////////////当前有效的解决方案,但我希望简化:
//Add a click event to each thumn in the thumbs container
for (var j = 0, len = carouselThumbsContainer.children.length; j < len; j++){
(function(index){
carouselThumbsContainer.children[j].onclick = function(){
console.log(index);
}
})(j);
}
我对 Javascript 了解不多,我认为一定有更简单的方法,但也许没有。
最佳答案
试试这个(另请阅读:What is DOM Event delegation?):
carouselThumbsContainer.onclick = function (e) {
var tgt = e.target, i = 0, items;
if (tgt === this) return;
items = children(this);
while (tgt.parentNode !== this) tgt = tgt.parentNode;
while (items[i] !== tgt) i++;
alert(i);
};
function children(el) {
var i = 0, children = [], child;
while (child = el.childNodes[i++]) {
if (child.nodeType === 1) children.push(child);
}
return children;
}
这是一个演示:
var hit = false,
ul = document.getElementsByTagName('ul')[0],
addButton = document.getElementsByTagName('a')[0],
toggleButton = document.getElementsByTagName('a')[1],
active = null;
ul.onclick = function (e) {
var i = 0, tgt = e.target, items;
if (tgt === this) return;
items = children(ul);
while (tgt.parentNode !== this) tgt = tgt.parentNode;
while (items[i] !== tgt) i++;
hit = true; // for debug purposes only
if (active) active.className = '';
(active = tgt).className = 'active';
output('index : ' + i);
};
addButton.onclick = function () {
var li = document.createElement('li'),
n = children(ul).length + 1;
li.innerHTML = '<a href="#">item ' + n + '</a>';
li.innerHTML += '<ul><li><a href="#">sub item</a></li></ul>';
ul.appendChild(li);
hit = true;
};
toggleButton.onclick = function () {
ul.className = ul.className ? '' : 'sublists';
hit = true;
};
document.onclick = function (e) {
e.preventDefault();
if (hit) hit = false;
else output('index : none');
};
// populate the UL
var i = 0;
while (i++ < 5) addButton.onclick();
hit = false;
// helpers
function children(el) {
var i = 0, children = [], child;
while (child = el.childNodes[i++]) {
if (child.nodeType === 1) children.push(child);
}
return children;
}
function output(s) {
document.getElementsByTagName('span')[0].innerHTML = s;
}
body { font-family: Arial; }
div { width: 210px; padding-left: .5em; }
p a { float: right; color: blue; margin-left: .5em; }
ul { border: 1px solid black; padding: 1em 1em 1em 2.5em; }
ul ul { display: none; }
ul.sublists ul { display: block; }
li a { display: block; color: inherit; text-decoration: none; }
li a { border-right: 90px solid transparent; }
li a:hover { border-right-color: blue; }
li.active a { border-right-color: black; }
li li a { border-right-width: 18px; }
<div>
<p>
<a href="#" title="add a new item">add</a>
<a href="#" title="toggle sub lists">toggle</a>
<span><i>click any item</i></span>
</p>
<ul></ul>
</div>
var tgt = e.target, i = 0, items; // and `this`
this
是 UL 本身。 e.target
是发起事件的 DOM 元素。它可以是 UL 的任何后代或 UL 本身(在这种情况下 e.target
= this
)。 i
保存被点击项目的索引。 items
代表 LI,它们是 UL 的直接子级。
如果目标是 UL 本身,则退出函数:
if (tgt === this) return;
获取作为 UL 的直接子级的 LI:
items = children(this);
通过目标的祖先向上冒泡,直到到达最上面的 LI:
while (tgt.parentNode !== this) tgt = tgt.parentNode;
增加索引直到目标匹配其中一个 LI:
while (items[i] !== tgt) i++;
提醒索引:
alert(i);
关于Javascript在点击时获取 child 的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20818790/
我的收藏具有以下结构 { _id:1, parent_id:0 } { _id:2, parent_id:1 } { _id:3, parent_id:1 } { _id:4, par
到目前为止,我已经尝试过获取该对象的所有子对象,但它只带来了两个子对象。不都是 child 的 child 。我如何获取所有内容并循环获取特定名称对象 Transform[] objChild = g
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我有一个如下表 好吧,在这个表中每个用户都有一个父用户,那么如果我们选择一个用户,那么它的 id 、子代 id 和子代子代 id 应该作为数组返回。我需要一个查询来获取 Rails 中的这些值,而不使
我需要以下代码的帮助: HTML: process process 在点击 td[class=process] 时,我需要 input[name=dat
好的,所以我从中获得了一个 PHP,该 PHP 由依赖于手头动态情况的切换循环传播(我认为)。现在,当我添加一个复选框时,我希望能够使 div 中的第一个复选框具有顶部边框和侧面,没有底部。下面的只有
我正在使用 Swift 和 Sprite Kit。我有一个名为 MrNode 的 SKNode,它有多个 SKSpriteNodes 和 SKNode 子节点。一些SKNode有子节点,而这些子节点也
对不起,这个标题太俗了,但我真的不确定如何解释这个,我是新一代的 SQL 技能由于事件记录模式而退化的人之一! 基本上我在 PostgreSQL 中有三个表 客户端(一个客户端有很多 map ) -
我有这样的简单表格: 编号 parent_id 创建于 具有父/子关系...如果一行是子行,则它有一个 parent_id,否则它的 parent_id 为 0。 现在我想选择所有没有子项(因此本身)
所以我有这样的结构: 我的问题是:如何从每个主题中删除 ID 为 3Q41X2tKUMUmiDjXL1BJon70l8n2 的每个字段。我正在考虑这样的事情: admin.database().ref
这个问题在这里已经有了答案: Change opacity on all elements except hovered one (1 个回答) 关闭 5 个月前。 因此,当鼠标悬停在 child
我需要在 Delphi 5 中创建一个 QuickReport,其布局如下: +================ | Report Header +================ +========
假设我有这样的 html: Some more detailed code.... 我想知道如何在CSS中使用“A
我有一个使用 flexbox 的类似表格的布局: +--------------+---------------+-----------------+---------------+ | 1
我有一个关联,其中 user has_many user_items 和 user_items has_many user_item_images。与一个已经退出的用户。我可以创建一个新的 user_
我想选择无序列表中的前两个列表项。我可以这样选择第一项: ul li:nth-child(1) a { background: none repeat scroll 0 0 beige; }
ul li:first-child a { border-radius: 5px 5px 0 0; } ul li:last-child a { border-radius: 0 0 5p
我有一个这样的表:
或者这些术语用于指代同一事物? 我正在尝试在我的 Win32 应用程序中实现一些显示位图图像的自定义按钮。一个教程指出我应该使用 CreateWindow() 创建子窗口。 但是,我已经从另一个关于创
我想在 jquery 中获取我的 svg 的 id,我尝试了这个 jquery,但它是未定义的。 $(event.target).children('svg').attr("id") Target.e
我是一名优秀的程序员,十分优秀!