$(function() {
  'use strict';
  // update
  $('#todos').on('click', '.update_todo', function() {
    // idを取得
    var id = $(this).parents('li').data('id');
    //ajax処理
    $.post('_ajax.php', {
      id: id,
      mode: 'update'
    }, function(res) {
      
    })
  });
});