note

removeAttr()메서드 본문

JavaScript/jQuery

removeAttr()메서드

투한 2012. 3. 21. 10:53






<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<script src="http://code.jquery.com/jquery-1.7.js"></script>
<script>
	$(document).ready(function (){
		$('h1').removeAttr('data-index');
	});
</script>
<body>
	<h1 data-index="0">Header-0</h1>
	<h1 data-index="1">Header-1</h1>
	<h1 data-index="2">Header-2</h1>
</body>
</html>


data-index 는 가짜속성 - 사용자 정의 속성 인데
removeAttr이 이 값을 제거하였다 






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

문서 객체의 제거 / remove()메서드  (0) 2012.03.21
html() 메서드  (0) 2012.03.21
attr()메서드 Getter / Setter /  (0) 2012.03.21
removeClass()메서드  (0) 2012.03.21
addClass()메서드 / addClass() 메서드의 콜백함수  (0) 2012.03.21