0

好吧。我是 jEditable 的新手。我想将 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" userid="'.$row['id'].'" id="name">'.$row['email'].'</td>
  </tr>
</tbody>
</table>

这是我正在使用的 jEditable 脚本

$(function() {
$("td.items").each(function(index) {    
$(this).editable("handler.php", { 
submitdata : {userid: $(this).attr('userid')},
indicator : "<img src='images/indicator.gif'>",
tooltip   : "Doubleclick to edit...",
event     : "dblclick",
onblur    : "submit",
name : 'newvalue',
id   : 'elementid',

});
});

jEditable 正在工作。这很棒。我只想使用 jQuery 验证代码。我把它们放在哪里?

4

1 回答 1

0

使用 jEditable 的痛苦体验是:很难与其他验证插件集成,例如 real_simple_validation。所以我认为你编写简单而干净的代码来做到这一点并不容易。也许你可以看到它的回调函数?

于 2012-03-24T01:41:11.667 回答