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 | 31 |
Tags
- 프프로로그그래래밍
- 클립스튜디오구매
- 클튜구매
- Math.floor();
- 디자인표준계약서
- textContent
- 클립스튜디오
- 객체
- js
- 게임 맥에서
- 구매
- 구독
- 형변환
- 서평단
- 아이패드
- 클튜구독
- rectangleapp
- https://rectangleapp.com
- 클튜
- 맥에서 게임
- 클립스튜디오할인
- 별찍어보기
- form
- 클립스튜디오구독
- querySelectAll
- 클튜할인
- 애플
- 배열
- 소수점이하버리기
- 맥
Archives
- Today
- Total
duedue
form-폼의 입력 내용 가져오기 본문
<form action="#" id="form">
<input type="text" name="word">
<input type="submit" value="검색">
</form>
<p id="output"></p>
<script>
</script>
<form action="#" id="form">
<input type="text" name="word">
<input type="submit" value="검색">
</form>
<p id="output"></p>
<script>
document.getElementById('form').onsubmit =function(){
var search = document.getElementById('form').word.value; //변수에 값 대입
// 변수 search에 form 요소 취득하고, 읽고싶은 곳의 name 속성을 지정하고, 밸류 프로퍼티를 대입함
document.getElementById('output').textContent='['+search+'] 검색중 ...';
//
};
</script>
입력내용 읽어오기
형식
취득한 <form>의 요소 중 읽고 싶은 양식의 name 속성,value