<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<h1>사진들</h1>
<div class="pic">
<img alt="성 자비에르 성당(외관)" src="img01.jpg">
<img alt="성 자비에르 성당(내관)" src="img02.jpg">
<img alt="은행" src="img03.jpg">
<img alt="가로등" src="img04.jpg">
</div>
<script type="text/javascript">
$(function () {
$("img").click(function () {
picName = $(this).attr("alt");
alert(picName + "의 사진입니다");
});
});
</script>
</body>
</html>