Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
的返回值$("#myform").validator()是一个对象,Jquery-Tools Validator中是否有类似 boolean的方法$("#myform").isValid()?
$("#myform").validator()
$("#myform").isValid()
谢谢
checkValidity不是 jQuery 对象的方法。它是存储在您将验证器绑定到的表单(或输入)元素validator的元素中的实例的方法。.data采用:
checkValidity
validator
.data
$('#myform').data("validator").checkValidity()
获取表示表单有效性的布尔值。
小提琴