如何在jquery之前的结果中给出click事件

时间:2015-10-30 11:56:35

标签: javascript jquery

我有这样的代码。

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;
        }

案例"默认" 的输出将在此表格中显示。 enter image description here

输入编辑添加功能,我使用了 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);
    }

但是对话框没有打开..

0 个答案:

没有答案