我有一个页面,我必须根据第一个表单中的第一个输入来搜索元素的存在
<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");
});
但它不工作