Javascript/jQuery(9)
-
json 처리
$.ajax({ url : "{% url 'gantt:getData' %}", data : { "work_id" : "{{work_id}}" }, dataType : 'json', success : function(data) { data = JSON.parse(data) $.each(data, function(i,item) { console.log(i,item) }); }, error : function(request, status, error) { console.log(request,status,error) } }); data = JSON.parse(data)처럼 JSON.parse 함수를 사용해야 데이터가 인식이 됨
2021.01.17 -
최신 버전 가져오기 2021.01.16
-
ID로 객체를 찾아서 값 가져오기, 셋팅하기
document.getElementById('id_form-1-name').value $('#id_form-1-name').val() document.getElementById('id_form-1-name').value = 'ㄴㄴㄴ' $('#id_form-1-name').val('ㄴㄴㄴ')
2021.01.16