单击内部嵌套按钮时,我试图关闭父容器。在我的 UI 中——我有许多这样的父容器(我在产品类别页面上呈现我的产品目录的预览窗口)。
正如您在下面的标记中看到的那样——CLOSE 按钮深深地嵌套在 DOM 中。当用户点击关闭按钮时——我需要隐藏()父 Box-1。请记住,我一次最多可以在一个页面上显示 100 种产品(100 盒“Box-1”)。
我的标记如下所示:
<div class="box-1">
<div class="box-2">
<div class="box-3">...</div> <!-- end box-3 -->
<div class="box-4">
<div class="box-5">...</div> <!-- end box-5 -->
<a class="btn-close" href="#">CLOSE</a> <!-- this triggers the close event -->
</div> <!-- end box-4 -->
</div> <!-- end box-2 -->
<div class="box-6">
<div class="box-7">...</div> <!-- end box-7 -->
<div class="box-8">
...
<div class="box-9">...</div> <!-- end box-9 -->
</div> <!-- end box-8 -->
</div> <!-- end box-6 -->
</div> <!-- end box-1 -->
我的问题是——我如何最好(并且最有效地)遍历 DOM 以获取“box-1”并发出 .hide() 方法......这是我现有的代码。
<script>
$productsResultItems.delegate('.btn-close', 'click', function (e) {
//box-1
$(this).parents('div.box-1').hide(); // <-- is this the best way?????
e.preventDefault();
</script>
最初,我正在尝试这个——
$this.parents().find('.hover-box-large').hide();
这在 IE7 和 IE8 中被证明非常慢。
我发现向选择器添加更多细节将 IE7 的性能提高了近 100 倍,但在 IE8 中只提高了 4 倍 :( IE8 仍然需要大约 200 毫秒来关闭父容器。现在所有其他浏览器(Chrome、Safari、Firefox 和IE7) 在不到 20 毫秒内关闭容器。
$this.parents('div.hover-box-large').hide();
但是有没有更好的选择器方法呢?IE8在这种向上遍历方面非常糟糕的任何特殊原因?