컴퓨터 썸네일형 리스트형 button submit 막기 form 안에 있는 button 은 자동으로 submit 기능을 한다. form 안에 있어도 submit 기능을 하지 않게 하기 위해서는 아래와 같이 코딩한다. 버튼 input 입력 제한 input 값을 변경하지 못하게 제한 하는 방법은 두가지이다. 속성 값으로 readonly 나 disabled 를 넣어주면 된다. 둘의 차이점은 readonly 는 form 내에서 전송이 가능하지만, disabled 는 전송이 안 된다. 이전 페이지로 이동 history.back() 이전페이지로 JavaScript random 랜덤 Math.floor(Math.random() * 100) + 1; 이렇게 하면, 1에서 100까지 나오고 Math.floor(Math.random() * 10); 이렇게 하면, 0에서 9까지 나오게 된다. const fnRandomString = (num) => { const characters ='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; let result= ''; const charactersLength = characters.length; for (let i=0; i a 태그 스타일 없애기 a:link { color: green; background-color: transparent; text-decoration: none; }//방문 전 링크 상태 a:visited { color: pink; background-color: transparent; text-decoration: none; }//방문 후 링크 상태 a:hover { color: red; background-color: transparent; text-decoration: underline; }//마우스 오버했을 때 링크 상태 a:active { color: yellow; background-color: transparent; text-decoration: underline; }//클릭했을 때 링크 상태 a:hover:not(.. 이전 1 ··· 68 69 70 71 72 73 74 ··· 88 다음