0

削除された LI アイテムの ID を取得しようとしています。以下は私のコードです:

            // when the user wants to just trash a task compeletely
        $(".ui-icon-trash").on("click", function(e) {
            var id = $(this).parent("li");
            // var idVal = id.getAttribute("id");

            tb_show("Warning!", "#TB_inline?height=100&width=260&inlineId=divDelete", "");
            e.preventDefault();
            $(this).parent("li").remove();
        });

問題は、id.getAttribute("id") が undefined を返すことです。

私の LI 属性は次のようになります。

            <li class="ui-widget-content ui-corner-tr" id="1">
            <h5 class="ui-widget-header">Task</h5>
            <img src="graphics/task.png" width="96" height="72" />
            Sample Task
            <a href="" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
            <a href="" title="Delete task" class="ui-icon ui-icon-trash">Delete task</a>
        </li>
4

2 に答える 2

1
// when the user wants to just trash a task compeletely
    $(".ui-icon-trash").on("click", function(e) {
        var id = $(this).parent("li");
        // var idVal = id.getAttribute("id");

        tb_show("Warning!", "#TB_inline?height=100&width=260&inlineId=divDelete", "");
        e.preventDefault();
        var myVar = $(this).parent("li").attr("id");
        $(this).parent("li").remove();
    });

myVar は、削除された要素の ID を返す必要があります

于 2012-07-27T23:20:02.890 に答える
0

jQuery を使用すると、次のことができます。

var id = $(this).parent("li").attr('id')

または jQ と混合されたバニラ JS:

var id = $(this).parent("li")[0].id
于 2012-07-27T23:19:54.000 に答える