라디오버튼 클릭시 input 박스 활성화 시키기

반응형

<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;"


반응형

댓글()