note

속성 선택자 본문

JavaScript/jQuery

속성 선택자

투한 2012. 3. 20. 09:44











<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery-1.7.js"></script>
<script>
	$(document).ready(function (){
		$('input[type=text]*').val('Hello jQuery..!');
	});
	
</script>
</head>
<body>
	<input type="text" /><br/>
	<input type="password" /><br/>
	<input type="radio" /><br/>
	<input type="checkbox" /><br/>
	<input type="file" /><br/>
</body>
</html>


대괄호 안에 속성을 명시한다 속성 값까지도

value로 바꾸는것이 val 메소드이다

 






'JavaScript > jQuery' 카테고리의 다른 글

필터 선택자  (0) 2012.03.20
입력 양식 필터 선택자  (0) 2012.03.20
자식 선택자  (0) 2012.03.20
클래스 선택자  (0) 2012.03.19
ID 선택자  (0) 2012.03.19