-예제1) html태그의 속성의 값 가져오기
<body>
<!-- TODO: html태그의 속성의 값 가져오기 -->
<!-- jquery cdn -->
<script src="http://code.jquery.com/jquery-3.1.0.js"></script>
<!-- js -->
<script>
// 형태 :
$(function(){
// jquery 코딩
let src = $("script").attr("src");
alert(src);
});
</script>
</body>
-결과)
<body>
<!-- TODO: html 태그의 속성값 수정하기 -->
<img />
<!-- jquery cdn -->
<script src="http://code.jquery.com/jquery-3.1.0.js"></script>
<!-- js -->
<script>
// 형태 : $(function(){});
$(function(){
// jquery 코딩
$("img").attr("src", "http://placehold.it/100x100");
$("img").attr("alt", "빈 이미지");
$("img").attr("width", "100");
});
</script>
</body>
-결과)