我正在使用 Jeditable 来编辑表格行。我的问题是,在提交更改的值(并将其存储在数据库中)后,当我返回页面时,它会显示整个页面而不是编辑的行。它也显示在表外。
-------table--------------
row11 row12
row21 row22
--------------------------
假设我更改row11
并更新了数据库中的值。现在整个表格显示了两次。第一次在桌下row11
,第二次在桌外。我无法弄清楚为什么会这样。
以下是我用于发送值和其他内容的脚本:
<script type="text/javascript">
$(document).ready(function() {
$('.edit').editable('', {
indicator : 'Saving...',
tooltip : 'Click to edit...'
});
$('.edit_area').editable('http://localhost:8080/Interceptors_Struts2_Ant/parameters.action', {
type : 'textarea',
cancel : 'Cancel',
submit : 'OK',
indicator : '<img src="img/indicator.gif">',
submitdata : function() {
var id2 = '${param.city}';
return {city: id2, tableid: $(this).closest('table').attr('id'),
rowid: $(this).parent().index()}},
tooltip : 'Click to edit....',
name : 'newvalue'
});
});
</script>