hiberfil.sys 제거 5월 22, 2016 이파일은 최대 절전 모드를 사용할 경우 필요한것입니다. 저 같이 집에서 최대 절전 모드를 사용하지 않을 경우를 꺼두셔두 됩니다. cmd를 관리자 권한으로 여시고 끌 경우 powercfg -h off 키는 영우 powercfg -h on 자세한 내용 보기
html input 값넣기 5월 10, 2016 <input id="inputtest" type="text"> <script> document.getElementById('inputtest'). value = '1'</script> 자세한 내용 보기
html 테이블 전체 색(백그라운드) 5월 03, 2016 table style="width:100%;text-align:left;background-color:gold; 자세한 내용 보기
자바 스크립트 소수점 올림, 버림, 반올림 4월 30, 2016 1. 소수점 올림, 버림, 반올림 Math.ceil() : 소수점 올림, 정수형 반환 Math.floor() : 소수점 버림, 정수형 반환 Math.round() : 소수점 반올림, 정수형 반환 var n = 123.456 ; alert(Math.ceil(n)); // 124 alert(Math.round(n)); // 123 n = 123.567 ; alert(Math.ceil(n)); // 124 alert(Math.floor(n)); // 123 alert(Math.round(n)); // 124 자세한 내용 보기