반응형 전체 글38 [JQuery] 즉시실행함수 [JQuery] 즉시실행함수 $(document).ready(function(){ // 즉시실행 }); $(function(){ // 즉시실행 }); 2022. 4. 26. [Javascript] 즉시실행함수 [Javascript] 즉시실행함수 (function(){ // 즉시실행 })(); 2022. 4. 26. [JQuery] 버튼 비활성화 [JQuery] 버튼 비활성화 // script $('#btn').click(function() { $("#btn").attr("disabled", true); } 2022. 4. 20. [Spring] JSTL <c:if></c:if> 사용법 [Spring] JSTL 사용법 // Controller @RequestMapping("/cif") public String cif(Model model) { model.addAttribute("name", "park"); return "/test.jsp"; } // jsp // 젤위에 추가 name이 park일 때만 보임 2022. 4. 20. [MariaDB] The user specified as a definer ('root'@'%') does not exist 에러 해결 [MariaDB] The user specified as a definer ('root'@'%') does not exist 에러 해결 grant all on *.* to 'root'@'%' identified by 'password' with grant option; 2022. 4. 19. [Spring] mybatis에서 selectKey [Spring] mybatis에서 selectKey SELECT MAX(col1)+1 FROM table INSERT INTO table ( col1 ,col2 ) VALUES ( #{col1} ,#{col2} ) 2022. 4. 12. 이전 1 2 3 4 5 6 7 다음 반응형