관리-도구
편집 파일: manager_neworders.js
$(function () { $('.open_id').click(function(){ var data = $(this).attr("data_id"); var res = data.replace("#modal", ""); $('#data_id_'+data+'').hide(); console.log(res); $.ajax({ data: "id=" + res, url: "/manager/ajax/neworder", type: "post", success: function (data) { $(".modal-content").html(data); $("#myModal").modal("show"); }, error: function (msg) { $(".modal-content").text("Some error! Please, try again with small picture or crop this one."); } }); }); });