最初のフォームの最初の入力のみに応じて要素の存在を検索する必要があるページがあります
<input type="text" /><!-- first input -->
<button></button>
<div>
<form><input value="3" /></form> <!-- first form -->
<form><input value="3" /></form>
</div>
とスクリプト
$("button").click(function()
{
if( $(this).next().children("form").first().has("input[value='" + $(this).prev().val() + "']") )
alert("Present");
else
alert("Absent");
});
しかし、それは機能していません