我有一个正在创建的注册表单。在我的 html 文件中,我有两个单选框,
<input type="radio" name="whatever" value="0" id="whatever" checked//> No
<input type="radio" name="whatever" value="1" id="whatever"> Yes
如果值为 1,它应该使用 ajax 发送电子邮件,这就是我所拥有的,
if($("input[name='whatever']").val()=='2'){
$.ajax({
type: 'POST',
url: base + 'email',
data: vData,
success: function() {
// alert( "I'm the callback")
}
});
}
在此先感谢您的帮助。