我想从 DOM 访问一个元素,其父元素是我当前元素的父元素的子元素。搞砸了?
看这里:
<div class="tr2">
<div class="td1">
<input type="checkbox" value="" name="" />
</div>
<div class="td2">${index.getKey()[1]}
<input type="hidden" name="upc" value="${index.getKey()[0]}" id="upc${index.getKey()[0]}" />
</div>//i want to access this hidden input
<div class="td3">
<input type="text" name="categoryInput${counter+1 }" value="${index.getValue().toString().replace('[','').replace(']','');}" class="input" id="ct-input${counter+1 }" placeholder="Select your Category" />
</div>//from event of this textfield
<div class="td4"><i class="fa fa-check"></i>
</div>
</div>
我想td2
从文本输入的事件中访问隐藏的输入td3
。
注意:所有这些都在一个循环中,所以不要建议任何绝对元素路径。
可能是我搞砸了我的问题,请随时编辑或建议。
提前致谢