我在 html 中有这个:
<ul class="ei-slider-arrows">
<li id="arrowLeft" ><img src='images/close.png'/></li>
<li id="arrowRight" ><img src='images/close.png'/></li>
</ul>
我正在尝试在我的两个 li“箭头”上添加点击功能,但我无法选择它们。我试过这个:
this.$arrows = this.$el.find('ul.ei-slider-arrows');
this.$arrowLR = this.$arrows.children('li');
this.$arrowRight = this.$arrowLR.getElementById("arrowRight");
我可以添加一个功能,this.$arrowLR
但我无法选择arrowRight
。在这里我尝试了getElementById
,但我也尝试了get(0)
and get(1)
。
任何人都知道为什么它不起作用?
如果我这样做console.log(this.$arrowRight)
,它只会在两种情况下(和)都显示[]
在控制台中。get()
getElementById("arrowRight")