<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){ -- window.onload 같은거
$("input").click(function(){ -- 태그명 input을 클릭하면 펑션발동
$(this).val("파이언인더홀"); -- 내가 클릭한거의 value 값에 인자값을 넣는다. 안에 이 값을 안넣으면 현재value값을 얻어오는것
})
});
</script>
</head>
<body>
<input type="button" value="aaa">
<input type="button" value="bbb">
<input type="button" value="ccc">
</body>
</html>
"input"만 하면 모든 input대상의 첫번째만 해당된다.
대신 $($("input")[2]) 라고 하면 input태그의 3번째꺼를 지칭한다
jquery 제이쿼리 css 인자값 1개짜리 (0) | 2015.02.27 |
---|---|
jquery 제이쿼리 css 예제 테두리 꾸며보기 (0) | 2015.02.27 |
setInterval 과 ajax 써서 1초마다 데이터 받기 (2) | 2015.02.24 |
jsp form태그 get,post방식 한글 깨질때 (0) | 2015.02.23 |
jsp ContextPath 와 getRealPath의 차이점 (0) | 2015.02.23 |