我是初学者。我希望有人会帮助我。 如何在webbrowser中找到表单。
在我的网页浏览器中,我有10个表格。 小例子。
<form action="#">
<div>Price: 1000</div>
<input type="submit" value="buy">
</form>
<form action="#">
<div>Price: 2000</div>
<input type="submit" value="buy">
</form>
问题是,如果buy
仅使用此表单,如何点击price < 1000
按钮。抱歉我的英文。
答案 0 :(得分:0)
这可能不是最好的解决方案,但它会起作用
$("form").each(function () {
if (parseInt($(this).find("div").text().substring(7, 11)) > 1000) {
alert("Sumbit form here");
//$(this).submit;
}
});