我试图在没有输入 [提交] 的情况下发送我的表单,但它无法正常工作。
教程地址:链接
我使用了 jquery 验证插件。
我把图像按钮而不是输入[提交]。它不工作。我想将我的图像分配给验证功能而不是发送功能。
一些建议?
这是代码
形式
<form id="kullaniciKayit" action="" method="post" novalidate>
<input type="hidden" name="islem" value="uyeKayit">
<input type="hidden" name="fbId" value="<?php echo $fidd ?>">
<ul>
<li><input type="textbox" class="selector" style="background:transparent;" name="objAd" value="<?=$adSoyad?>" disabled></li>
<li><input type="textbox" class="selector" style="background:transparent;" name="objEposta" value="<?=$eposta?>" disabled></li>
<li><input type="textbox" class="selector" style="background:transparent;" name="objDtarih" placeholder="Gün/Ay/Yıl" ></li>
<li><input type="textbox" class="selector" style="background:transparent;" name="objAdres"></li>
<li><input type="textbox" class="selector" style="background:transparent;" name="objTel"></li>
</ul>
<div class="form-gonder">
<a class="formGonderBtn" href="" target="_parent"><img src="../img/post-btn.png"></a>
</div>
</form>
jQuery
<script type="text/javascript" src="../js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="../js/jquery-ui-1.10.3.js"></script>
<script type="text/javascript" src="../js/jquery.validate.js"></script>
验证码
<script>
// When the browser is ready...
$(function() {
// Setup form validation on the #register-form element
$("#kullaniciKayit").validate({
// Specify the validation rules
rules: {
objAdres: "required",
},
// Specify the validation error messages
messages: {
objAdres: "Lutfen Adres Giriniz",
},
submitHandler: function(form) {
form.submit();
}
});
});
</script>