0

我正在开发一个验证框架,需要一个布尔结果来知道验证是否成功。

这是我正在做的事情的快速浏览:

Stone.Validation({
 id:  "#InputTextId",//the id of the input you want to validate
 DataType: "string",//the Data Type of want to valide(string and integer for now are avaiable)
 MsgOk: "Correct",//optional: the msg you want to display if it is a string
 MsgWrog: "* Check this field",////optional: the msg you want to display if its not a string
 Destiny: "#someDivID",//the id that will some the correct of error message
})

如果验证失败,我不知道如何禁用表单提交。它只返回消息,而不是布尔值或类似的东西。

我正在寻找的示例:

Stone.Validation({
 id:  "#InputTextId",
 DataType: "string",
 MsgOk: "Correct",
 MsgWrog: "* Check this field",
 Destiny: "#someDivID",
 success: function(results)
{
   if(results)
    {
      //submit will work
    }
}
})
4

1 回答 1

0

要控制表单提交,您必须使用表单的提交事件。以下是使用 jQuery 的方法:

$('form').submit(function(){
    // validate your form first
    if(!formIsValid) {
        // if validation didn't pass, cancel submission
        return false;
    }
});
于 2013-03-01T21:51:32.593 回答