<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src ="../js/jquery-3.2.1.js"></script>
</head>
<script>
/* removeAttr(name) 메소드 : 문서 객체의 속성을 제거*/
$(function(){
$('h1').removeAttr('data-index');
});
</script>
<body>
<h1 data-index="0">Header-0</h1>
<h1 data-index="1">Header-0</h1>
<h1 data-index="2">Header-0</h1>
</body>
</html>
' sundries' 카테고리의 다른 글
3-13 text() 노드 (0) | 2018.01.12 |
---|---|
3-11 css 메서드 콜백 함수 (0) | 2018.01.12 |
3-6 attr() 콜백 함수 / 속성값 Object 사용 (0) | 2018.01.12 |
3-4 attr() (0) | 2018.01.12 |
3-1 addClass() 콜백 함수 (0) | 2018.01.12 |