前の問題次の問題

※ 著作権上の問題により掲載を取りやめています。

---
[出典:ウェブデザイン技能検定 2級 平成30年度(2018) 第2回試験 問30]

解答

正解
3
難易度
取組履歴
ログインすると履歴が残ります
解説
解説のユーザー評価:未評価
ABCD を埋めたソースコードは以下となります。

<body>要素 

<img src="images/image_001.png" id="photo" alt="photo" />
<script>
 let currentNum = 0;
 const files = [
   'images/image_001.png',
   'images/image_002.png',
   'images/image_003.png',
   'images/image_004.png',
 ];
 const photoElement = document.getElementById('photo');
 photoElement.addEventListener('click', function() {
  ++ currentNum;
  currentNum %= files.length;
  const photo = files[currentNum];
  photoElement. setAttribute ('src', photo);
 });
</script>
ログインすると解説の投稿・編集が可能となります。
個人メモ(他のユーザーからは見えません)
メモを残すにはログインが必要です
コメント一覧
  • まだコメントがありません
※ コメントには[ログイン]が必要です。