<div class="main">
<button class="btnClick" type="button"> </button>
<button class="btnClick" type="button"> </button>
<div class="child">
<p> ** Some child Text ** </p>
<textarea id="edit" class="hidden"></textarea> //class hidden == Display:none
</div>
</div>
<div class="main">
<button class="btnClick" type="button"> </button>
<button class="btnClick" type="button"> </button>
<div class="child">
<p> ** Some child Text ** </p>
<textarea id="edit" class="hidden"></textarea> //class hidden == Display:none
</div>
</div>
我试图用上面的代码实现编辑部分。以上<div>
是动态生成的,当用户单击按钮时,我需要隐藏该<p> "** Some child Text ** " and make the Textarea visible
特定 Div 并复制
部分到 Textarea
我试过点击按钮
$(this).closest('#edit').removeClass("hidden");
但它没有用,并且每次使用其他代码时,无论我点击哪个按钮,只有第一个 textarea 可见
我正在寻找的是在第一个按钮上单击特定的<div> textarea class hidden to be removed and copy the<p> text to Textarea on that particula <div>
做这个的最好方式是什么。我可以添加任何新类并使代码通用。你的想法!!