목록Programming (215)
른록노트
참고사이트 https://codepen.io/parthviroja/pen/jPdZoM
contains 함수를 쓰면 해당 문자열에 매개변수안에 있는 문자열이 포함되어 있으면 true 없으면 false를 반환함. contains:두개의 String을 비교해서 비교대상 String을 포함하고 있으면true, 다르면 false를 반환한다. String str1 = "abcd";String str2 = "c";boolean contains = str1.contains(str2);System.out.println("contains: " + contains);결과값:true 참고사이트http://sks3297.tistory.com/entry/%EC%9E%90%EB%B0%94-%EB%AC%B8%EC%9E%90%EC%97%B4-%ED%95%A8%EC%88%98
var checkRow ="";$('input:checkbox:not(:checked)').each(function(){checkRow = checkRow + $(this).val()+",";});checkRow = checkRow.substring(0,checkRow.lastIndexOf(",");console.info(checkRow); 참고사이트https://api.jquery.com/not-selector/
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