gpt4 book ai didi

javascript - 使用javascript匹配表单条目?

转载 作者:行者123 更新时间:2023-11-30 18:58:00 24 4
gpt4 key购买 nike

我有一个带有这样标记的表单....

你剪的是哪一张凭证

<div class="answer item1">
<input type="checkbox" name="downloaded_vouchers[answer1]" id="answer1" value="1"/>
<label for="answer1">Answer 1</label>
</div>
<div class="answer item1">
<input type="checkbox" name="downloaded_vouchers[answer1]" id="answer1" value="1"/>
<label for="answer1">Answer 1</label>
</div>

你用的是什么代金券

 <div class="answer item1">
<input type="checkbox" name="used_vouchers[answer1]" id="usedanswer1" value="1"/>
<label for="answer1">Answer 1</label>
</div>
<div class="answer item1">
<input type="checkbox" name="used_vouchers[answer1]" id="usedanswer1" value="1"/>
<label for="answer1">Answer 1</label>
</div>

我需要能够以某种方式,在提交表单时检查凭证剪切是否与使用的凭证匹配,有一些验证服务器端但我也需要做一些客户端并且不知道在哪里开始,我需要直接使用没有 jquery 或类似的 javascript,任何人都可以帮忙吗?

最佳答案

像这样的....

   <script type="text/javascript">
function validate( )
{
// use document.getElementById to get the form item
var item = document.getElementById("yourElement");
if ( somecondition == true )
{
alert("good to go");
// allow the form to post
return true;
}
else
{
alert("I don't think so");
// return false so the form will not post
return false;
}
}
</script>

<form onsubmit="Validate();" >
</form>

从 onsubmit 方法返回 true 将发送表单,返回 false 则不会

关于javascript - 使用javascript匹配表单条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1207028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com