jEditable - 无法进行验证

时间:2012-03-24 01:16:52

标签: javascript jquery jeditable edit-in-place

好的。我是jEditable的新手。我想在jEditable中使用jQuery验证。让我解释。在这里,我在一个像这样的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验证码。我把它放在哪里?

1 个答案:

答案 0 :(得分:0)

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