Notice
Recent Posts
Recent Comments
Link
«   2025/08   »
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
more
Archives
Today
Total
관리 메뉴

eggrok

[html] input type = hidden 본문

programming

[html] input type = hidden

the awesomest 2012. 4. 15. 21:44

<input type=hidden  name=view  value='값'>

 

hidden은 <form>문 안에서 쓰는 것이며 사용자에게는 보여지지 않는다.

 

hidden이 가지는 value값을 가진 name의 변수를 현재 파일에서 보여주지 않고 form문의 action에서 주어진 곳으로 넘어가게 해주는 것.

또는 다른 파일에서 넘어 온 변수를 현재 파일에서 활용하지 않고 바로 다음 파일로 넘어가게 해주는 것.

[출처] input type="hidden"|작성자 학생