컴퓨터 썸네일형 리스트형 미디어 쿼리 https://junistory.blogspot.com/2017/06/n.html JavaScript 형 변환 1. 문자열 → 숫자 1.1. 명시적 parseInt(문자);//정수형 parseInt(문자);//실수형 Number(문자);//정수나 실수형 1.2. 암시적 문자*1; 2. 숫자 → 문자열 2.1. 명시적 String(숫자); //숫자를 문자로 숫자.toString(진법); //숫자를 문자로 변환하며 진법 변경 숫자.toFixed(); //숫자를 문자로 변환하며 실수형의 소수점 자리를 지정 2.2. 암시적 숫자+""; 3. 형 확인 typeof 변수명 display 속성 변경하기 CSS 에서 사전에 설정해둔 display 속성을 변경해야 될 때가 있다. 그럴 땐 아래와 같이 하면 된다. document.getElementById("demo").style.display = "none"; 여기서 주의할 점은 ...("demo").display 가 아니라 ...("demo").style.display 라는 것이다. 헷갈려서 자주 .style 을 까먹으니 기억하자. 기억 못해도 되니 검색하자. JavaScript 날짜, 시간 1. 오늘 let today = new Date(); let year = today.getFullYear(); let month = today.getMonth() + 1; //달은 0부터 시작해서 1을 더해준다. let day = today.getDate(); if (month < 10) month = '0' + month; if (day < 10) day = '0' + day; 2. 내일 var date = new Date(); /* 현재 */ date.setDate(date.getDate() + 1); /* 날짜 + 1일 */ //또는 var date = new Date(); /* 현재 */ date.setTime(date.getTime() + 1000 * 60 * 60 * 24); /* 타임스탬프 .. input 전화번호 입력받기 tel pattern 이전 1 ··· 67 68 69 70 71 72 73 ··· 88 다음