Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 이클립스
- Bootstrap
- 안드로이드
- scrollView
- javascript
- Eclipse
- MSsql
- jsp
- html
- Redirect
- decompiler
- 웹뷰
- TextBox
- Android
- STS
- 컬럼명
- MS-SQL
- Apache Lucene
- WebView
- 자바
- varags
- 웹 서비스
- 자바스크립트
- Maven
- SpringSource Tool Suite
- C#
- asp.net
- Web Service
- Java
- MANTIS
Archives
- Today
- Total
bboks.net™
Checkbox에 따라 컴포넌트 enable / disable 본문
function show_input(num){ if (document.form1.check1.checked == true){ document.form1.text1.disabled = false; //입력 가능하게 해라 document.form1.text1.style.background = "white"; } else { // 체크박스가 체크 해제 상태면 document.form1.text1.disabled = true; // 입력하지 못하게 한다 document.form1.text1.style.background = "silver"; document.form1.text1.value=""; } } function check(){ var aa = document.form1.text1.value; var bb = document.form1.text2.value; if (aa.toLowerCase() == bb.toLowerCase()){ alert("같어") } else { alert("틀려") } }