Javascript(198)
-
날짜 밀리세컨드 값 얻기
result = new Date('2020-01-01').getTime() console.log(result)
2021.01.17 -
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 -
브라우져에서 콘솔로 로그 출력
console.log('aaa')
2021.01.15 -
focus 객체 확인하기
document.activeElement.id
2021.01.15