示例 HTML 代码
//Not the correct working code just wrote for this clarification
<div id="1">
<input type="text">
.
.
<p>
</div>
<div id="2">
<button id="btn1">
<button id="btn2">
.
.
.
</div>
在按钮上单击我需要导航到
在 ID 1
我得到的是
$(this).parent().prev().parent()
我可以到达 ID 1。
我正在寻找替代方法来使用 ID1 并从 Button 单击 ID2 访问它们的元素
我不确定是否在重复,但只是想知道其他方法!
谢谢