반응형
SMALL
jQuery 를 이용하여 id, class, name 의 input value 값 가져오기
<input type="text" id="inputId" class="inputClass" name="inputName">
1) id 값 기준으로 가져 오기
var valueById = $('#inputId').val();
# 은 아이디를 의미
2) class 값 기준으로 가져 오기
var valueByClass = $('.inputClass').val();
. 은 클래스를 의미
3) name 값 기준으로 가져 오기
var valueByname = $('input[name=inputName]').val();
input 태그의 name값을 그대로 입력
반응형
LIST
'[ java ]' 카테고리의 다른 글
protected void doProcess(HttpServletRequest req, HttpServletResponse resp) throws ServletException,IOException { 뜯어보기 (1) | 2022.10.17 |
---|---|
HttpServletRequest 과 HttpServletResponse 메소드 정리 (1) | 2022.10.17 |
서블릿/JSP 공부(2) - 웹 서버 프로그램 구조 (2) | 2022.09.27 |
서블릿/JSP 공부(1) - 서블릿이란? JSP, CGI, 서블릿 라이프 사이클 (3) | 2022.09.26 |
객체지향 프로그래밍(Object-Oriented Programming) (2) | 2022.09.26 |
댓글