목록분류 전체보기 (556)
른록노트
session.invalidate(); invalidate() 함수를 사용하면됩니다.
bind는 내가 함수를 지정해서 만드는거고trigger는 bind된 함수를 사용하는것이다. $(window).bind('babo',function(){window.alert("바보");}); $(window).trigger('babo);
frm 객체를 console로 찍어보면 발생한 event의 이전이나 다음 요소들을 확인할 수 있다. frm.currentTarget.previousElement 를 사용하여만약 체크박스를 만들때 옆에 설명 글을 눌러서 체크되게 하려면이전 객체의 id를 가져와서 사용하게 하는 기능을 사용하면 유용할 것 같다. var el = $($element);$(document).ready(function(){ $('table label').click(function (frm){ if(el.find('#'+frm.currentTarget.previousElementSibling.id).is(":checked")){ el.find('#'+frm.currentTarget.previousElementSibling.id).p..
참고사이트https://brendaniel.github.io/2016/12/26/form-reset-%EC%9D%98-input-hidden-%EC%B4%88%EA%B8%B0%ED%99%94-%EB%AC%B8%EC%A0%9C/
참고사이트http://aramk.tistory.com/21
ip addr show 혹은 ip addr를 사용하면됨 참고사이트http://www.tutorialbook.co.kr/entry/CentOS-7-%EC%97%90%EC%84%9C-ip-%EB%AA%85%EB%A0%B9%EC%96%B4%EB%A1%9C-ip-%ED%99%95%EC%9D%B8%ED%95%98%EA%B8%B0
참고사이트https://discuss.elastic.co/t/elasticsearch-5-4-steps-to-delete-field-from-only-one-type/88121 - 그냥 이렇게하면 인덱스와, 타입의 속성은 복사되지않는다https://www.elastic.co/guide/en/elasticsearch/reference/5.5/docs-reindex.html#docs-reindex - API사이트그래서 속성들까지 복사하려면, reindex 하기전에 미리 index와 type의 속성을 만들어 놓아야한다.