js表单提交确认函数一例

发布时间:2020-07-20编辑:脚本学堂
分享一例表单提交前触发函数当返回true表单才会提交的代码,研究下js表单提交的方法,有需要的朋友参考下。

例子,js表单提交代码。
<form id="payForm" action="yeepaypay.html" target="_blank" method="post" onsubmit="return checkform();">

onsubmit函数即为表单提交前触发的函数。
代码:
 

复制代码 代码示例:
function checkform() {
var value = $("input[name='payWay']:checked").val();
if (value == 1) {
$("#alipayment").submit();
return false;
}
return true;
}
 

如果返回true表单才会提交,否则不提交,很实用的一段代码。