使用jeditable进行表单验证的任何提示。我想让POST的脚本用JSON传回错误,使用提交的文本,但似乎无法找到那个,如果可能的话。或者如何检查文本,因为它是通过onChange输入的。
THX
答案 0 :(得分:0)
这是一个简单的示例,但未使用jQuery验证。
function isNumeric(value) {
if (value == null || !value.toString().match(/^[-]?\d*\.?\d*$/)) return false;
return true;
}
$('.edit').editable(your_url, {
onsubmit: function(settings, original) {
if (isNumeric(original)) {
return true;
} else {
//display your message
return false;
}
}
});