01/10/2018, 08:32

Sử dụng jquery cho bai tap

<html>
    <body>
 <div class='container'>

        <ul class="todo" id='todo'>

        </ul>
        
        <ul id='completed' class='todo'>


        </ul>

    </div>
<body>
</html>
   

     function addTodoItem(text){
       var   html='<li>'+ text+
        '<div class="buttons">'+

        '<button class="remove" onclick=removeItem(this)>'

        +removeSVG+'</button>'+

       '<button class="complete" onclick=completeItem(this)>'+

        completeSVG+'</button>'+

        '</li>'

        $('#todo').append(html)

Em tạo ra các thẻ chứa đoạn text của thẻ input bên HTML và 2 hình ảnh là một click xóa data và một click là thêm data từ ul có ID=‘todo’ sang ul có ID=‘completed’ chuyển nguyên thằng __li_ khi click vào button complete

Bài liên quan
0