我想将 jQuery 验证与 jEditable 一起使用。在这里,我在类似这样的 while 循环中从我的数据库中回显一个表。
<table id="example" class="display" cellspacing="0" border="0">
<thead>
<tr>
<th>
Name
</th>
<th>
Phone
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="items" userid="'.$row['id'].'" id="name">'.$row['name'].'</td>
<td class="items required" userid="'.$row['id'].'" id="phone">'.$row['phone'].'</td>
</tr>
</tbody>
</table>
这是我正在使用的带有 jQuery 验证代码的 jEditable 脚本。
$("td.items").each(function(index) {
$(this).editable("handler.php", {
onsubmit: function(settings, td) {
var input = $(td).find('input');
$(this).validate({
rules: {
phone: {
number: true,
}
},
messages: {
phone: {
number: 'Only numbers are allowed',
}
},
});
return ($(this).valid());
},
submitdata : {userid: $(this).attr('retailerid')},
indicator : "<img src='images/indicator.gif'>",
tooltip : "Doubleclick to edit...",
event : "dblclick",
onblur : "submit",
name : 'newvalue',
id : 'elementid',
});
});
在这里,jEditable 运行良好。但是验证的东西不起作用。这个验证码正确吗?