| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- git cannot identify version of git executable
- 안드로이드 자동으로 포커싱
- php
- docker에서 mysql 실행
- junit
- 챗GPT
- 5회 인증
- PHP Storm
- Android Studio
- Chat GPT
- Location Permission
- XML Opacity
- Github Token
- Execution failed for task ':test'.
- Linux 패키지 관리자
- AWS
- 다음으로 이동
- mac 패키지 관리자
- Android Flavor
- sourceSet
- 여러 개
- InvalidTestClassError
- 팝업 바깥 레이어
- MySQL
- Github 등록
- codeigniter
- TextView 일부분
- 챗지피티
- nextFocusDown
- git
- Today
- Total
목록HTML & JavaScript (4)
128june
/* 5회 인증 검토 */ // 쿠키 가져오기 let tmpCarCheck = getCookie("tmpCarCheck"); // 5회 이상 인증 시 if(tmpCarCheck >= 5){ // 현재 시간 설정 let nowDate = new Date(); // time 쿠키 가져오기 let tmpCarCheckTime = getCookie("tmpCarCheckTime"); // time 쿠키 가 없으면 time 쿠키 설정 if(!tmpCarCheckTime){ // time 쿠키 날짜 설정 let expirationDate = new Date(); // time 쿠키 30분 제한 설정 expirationDate.setMinutes(expirationDate.getMinutes() + 30); // 쿠..
jQuery 태그 jQuery 최신버전 확인 : https://jquery.com/ jQuery What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. jquery.com 사용방법
jQuery에서 .append() 함수는 선택한 요소 내용의 끝에 지정한 내용을 추가합니다. 사용방식 다음과 같이 ul에 li를 추가합니다 // 변수 지정 let input = ' hello '; // 변수 삽입 $('ul').append(input); // append() 함수 사용 전 // append() 함수 사용 후 출력 결과 hello