我有循环生成的表单,所以元素的名称是相同的。这就是我想使用 $(this) 来访问它们并进行比较的原因。但到目前为止还没有成功,任何想法我怎么能。仅供参考,我是 Jquery 的新手,任何帮助表示赞赏:)
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$("form").submit(function() {
if ($(this).children("#textbx").val() < $(this).children("#comparetobox").val() ) {
$("span").text("Validated...").show();
return true;
}
$("span").text("Not valid!").show().fadeOut(1000);
return false;
});
</script>
<form id='userbid' name='userbid' method=post>
<input type="text" name="textbx" id="textbx">
<input type="text" name="comparetobox" id="comparetobox">
<span></span>
<input type="submit" value="save" name="submit">
</form>
<!-- Form is in loop so can be generated N no of times -->
<form id='userbid' name='userbid' method=post>
<input type="text" name="textbx" id="textbx">
<input type="text" name="comparetobox" id="comparetobox">
<span></span>
<input type="submit" value="save" name="submit">
</form>