如何在Jquery中使用可编辑插件实现回调函数

时间:2016-02-08 14:32:36

标签: jquery

我正在使用这个可编辑的插件来编辑行并将数据更新到数据库中。在将数据更新到数据库之后,我必须使用回调函数获取成功消息。请建议使用此插件调用其他功能的完美解决方案。

h3

1 个答案:

答案 0 :(得分:0)



$('#id').editable({
        type:'text',
        url: 'test/edit/1',
        source: source,
        success:function(response, newValue)
        {
	callfunction();
	var data = JSON.parse(response);
        },
	send: 'always',
	validate: function(value) 
	{
	}
 });