表单提交前触发函数返回true表单才会提交

内容摘要
直接看代码 复制代码 代码如下: <form id="payForm" action="yeepaypay.html" target="_blank" method="post" onsubmit="return checkform();"> 例子中的onsubmit函数即为
文章正文
直接看代码
复制代码 代码如下:

<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表单才会提交,否则不提交
代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!