Jquery validationEngine onclick

时间:2013-06-13 12:13:29

标签: javascript jquery validation

我有这个jquery插件Jquery ValidationEngine,它由此触发:

    <script>
        jQuery(document).ready(function(){
            // binds form submission and fields to the validation engine
            jQuery("#editar").validationEngine('attach');
        });
</script>

它工作正常,但在提交按钮上我有这个:

<input type="submit" value="SUBMIT" onclick="formhash(this.form, this.form.password);"  id="BotaoEntrar"/></td>

onclick通过javascript文件(THIS)发送密码:

    function formhash(form, password) {
   // Create a new element input, this will be out hashed password field.
   var p = document.getElementById("p");
   // Add the new element to our form.
   form.appendChild(p);
   p.name = "p";
   p.type = "hidden"
   p.value = hex_sha512(password.value);
   // Make sure the plaintext password doesn't get sent.
   password.value = "";
   // Finally submit the form.
   form.submit();
}

所以这里的东西“削减”验证jquery(如果我删除onclick它工作正常,但加密的密码不起作用)但我希望这两个东西一起工作..

类似“如果验证是正确的 - &gt; formhash .... else echo”错误验证“”但我不太了解jquery和javascript ..这两件事可以一起工作吗?

以下是jquery验证的API:http://posabsolute.github.io/jQuery-Validation-Engine

1 个答案:

答案 0 :(得分:0)

您可以使用自定义验证{/ 1}验证表单

jquery validation engine