我试图找到使用 jquery 选择表单中的所有输入,触发器是从那里启动的。例如,如果在表单 1 中单击按钮,则只会选择表单 1 中的输入,而不会选择表单 2 中的任何内容。
<form action="" method="POST"> <!--form 1-->
<input type="text" />
<input type="text" />
<input type="hidden" value="87678" />
<input type="button" onclick="doit()" />
</form>
<form action="" method="POST"> <!--form 2-->
<input type="text" />
<input type="text" />
<input type="hidden" value="87678" />
<input type="button" onclick="doit()" />
</form>