1
我有一個類似HTML的始祖的ID ..找到一個孩子
<div id="Field1">
<label id="label1">Name</label><br/>
<input type="text" data-attr="text" style="width: 200px;" id="input1"/>
<br/>
<label id="instr1"/>
<div class="xfb-row-options1>
<a class=button-delete src=">-
<a title="Add" class="button-add"> +</a>
</div>
</div>
上點擊按鈕DELETE1我要刪除全部事業部字段1。我想知道是Field1的父按鈕delete1的父母的Id。如何獲得如此?
即上點擊按鈕,刪除
$(".button-delete1").click(function(){
// (*)
});
(*)在這裏,我想找到字段1的是父抱着類的ID按鈕 - 刪除,這樣我可以使用其id值是Field1主要是1和我可以完全刪除該DIV。
請給我建議。