라디오버튼 클릭시 input 박스 활성화 시키기
프로그래밍/HTML & JavaScript2015. 1. 27. 11:45
반응형
<input type="radio" name="ip" value="<?=$ip?>" checked onClick="this.form.anotherip.disabled=true"> 접속자 IP
<input type="radio" name="ip" value="myip_no" onClick="this.form.anotherip.disabled=false"> IP 지정
<input type="text" name="anotherip" size="15" disabled>
input 박스 여러개를 활성화 해야 할 경우엔 아래와 같이 ; 로 구분하여 내용을 추가하면 됩니다.
onClick="this.form.anotherip.disabled=true; this.form.anotherip.disabled=true;"
onClick="this.form.anotherip.disabled=close; this.form.anotherip.disabled=close;"
반응형
'프로그래밍 > HTML & JavaScript' 카테고리의 다른 글
table 내용 엑셀로 저장하기 (0) | 2015.01.27 |
---|---|
[JavaScript] 이미지를 방향키로 움직일 수 있고, 좌표가 표시됩니다. (0) | 2015.01.27 |
[javascript] 글자나 이미지에 마우스를 올리면 다른곳의 이미지가 변경 (0) | 2015.01.27 |
[html] a 태그 밑줄 없애기 (0) | 2015.01.27 |
[html] 테이블 테두리 얇게하기 (0) | 2015.01.27 |
댓글()