我有这样的代码。
switch (action) {
case "default":
querystring = 'action=' + action;// this will load data in table
break;
case "add":
querystring = 'action=' + action + '&value=' + data;// this will create new item
break;
case "edit":
querystring = 'action=' + action + '&value=' + data + '&id='+id;// this will edit old item
break;
}
输入编辑和添加功能,我使用了 jquery ui对话框 添加新字段其工作正常。但对于编辑功能,我无法提供 .click事件
我的编辑事件是这样的
$('.iname-edit').click(function (e) {
e.preventDefault();
var id = $(this).attr("id");
var value = $(this).closest('.list-item');
edit_load(value, id);
});
function edit_load(value, id) {
edit_dialog = $('#popup').dialog({
title: 'Rename Old Type'
});
edit_dialog.dialog("open");
$('#iname').val(value);
}
但是对话框没有打开..