我有一个可编辑的表,我想将文本中的(4,'sub')更改为带有从数据库表中选择的选项的选择
$('#editable_table').Tabledit({
url:'masrafsave.php',
columns:{
identifier:[0, "id"],
editable:[[3, 'no'], [4, 'sub']]
},
restoreButton:false,
onSuccess:function(data, textStatus, jqXHR)
{
if(data.action == 'delete')
{
$('#'+data.id).remove();
}
}
});