* 힌트

 

Posted by 조은성
,

 

* 결과보기

 

 

 

 

 

 

 

 

 

 

 

* 결과보기

 

 

 

 

Posted by 조은성
,

 

 

5
Posted by 조은성
,

 

Posted by 조은성
,

 

 

* 실습

javascript
get_element.html

 

* 결과

 

 

 

 

 

 

 

 

 

 

 

 

Posted by 조은성
,

 

member_servlet_fc.zip

member_servlet_fc

register_form.jsp
login_form.jsp
search_form.jsp
modify_form.jsp

 

 

 

 

 

 

 

* 결과보기

register_form.jsp

 

 

 

 

 

 

 

Posted by 조은성
,

DOM 객체 (브라우저 내장객체)를 통한 Form 처리

• text객체 :

– <input type=“text”> 객체
– form의 하위 객체
– 접근 방법
• window.document.form_name.text_name.속성,
window.document.form_name.text_name.메소드

• textarea객체 :

– <textarea> 객체
– form의 하위 객체
– 접근 방법
• window.document.form_name.textarea_name.속성,
window.document.form_name.textarea_name.메소드

 

* text실습

 

 

 

* 결과

 

 

 

 

 

 

 

Posted by 조은성
,

 

* DOM 객체 (브라우저 내장객체)를 통한 Form 처리

• select 객체 :
– <select> 객체
– form의 하위 객체
– Select 태그의 값은 <option> 태그에 있다. 값에 접근하기 위해서는 select
를 통해 option 객체로 접근한다.
– 접근 방법
• window.document.form_name.select_name.속성,
window.document.form_name.select_name.메소드
값에 접근 : window.document.form.select.options[0].text

 

 

* DOM 객체 (브라우저 내장객체)를 통한 Form 처리

• option 객체 :
– select 내의 <option> 태그 객체
– select 객체의 options 속성을 통해 배열로 받아 접근한다.

* select 실습

 

 

* 결과

 

 

 

 

 

 

 

Posted by 조은성
,

 

 

* 결과보기

 

 

 

 

 

Posted by 조은성
,

Dynamic_Project
name : javascript_ajax_class

WebContent : 폴더
javascript

html
form.html
res.jsp

 

 

 

* 결과보기

 

 

 

- checkbox 결과보기

 

 

 

 

 

 

 

Posted by 조은성
,