0Pricing
Web Accessibility Academy · レッスン

Tab、Shift+Tab、Enter、Space:基本キー

キーボードユーザーがコントロールを移動・実行する方法を学びます。

「Tab、Shift+Tab、Enter、Space:基本キー」はCoddyKit上の無料Web Accessibility Academyレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはWeb Accessibility Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Web Accessibility Academyコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

No Mouse, No Problem

Lots of people never touch a mouse. They drive the whole web with the keyboard, so every control you build must work with keys alone. ⌨️

Tab Moves Forward

The single most important key is Tab. Each press jumps focus to the next interactive thing: a link, button, or form field.

Shift+Tab Moves Back

Pressed something too fast? Shift+Tab walks focus backward to the previous control, so users can always step back where they came from.

Enter Follows a Link

When focus lands on a link, Enter activates it. It is the keyboard's version of clicking that anchor to go somewhere new.

Buttons Take Enter and Space

A real button is special: it fires on both Enter and Space. That dual support is something you get for free from the native element.

<button type="button">Save changes</button>

Space Toggles Checkboxes

On a checkbox or radio, Space is the toggle key. Tab to it, press Space, and the checked state flips on or off.

<input type="checkbox" id="news"> <label for="news">Email me</label>

Native Elements Just Work

Here is the gift: native links, buttons, and inputs respond to these keys automatically. You do not wire any of it up yourself.

A div Is Not Focusable

Build a fake button from a div and Tab skips right past it. Plain divs and spans are invisible to keyboard users.

<div class="btn" onclick="save()">Save</div>

Try It Yourself Right Now

Open any page and press Tab a few times. Watch the highlight hop from control to control. That is exactly the path a keyboard user takes.

Arrows Move Inside a Group

Within a set of radio buttons, the arrow keys move between options, while Tab jumps the whole group at once. Different keys, different jobs.

Keys Match Expectations

Users carry these habits everywhere, so honor them. A control that ignores Enter or Space simply feels broken to a keyboard user.

Quick Check

Think about how each key behaves on a native control.

Recap: The Core Keys

You learned the keyboard basics: Tab and Shift+Tab to move, Enter to follow links, and Enter or Space to fire buttons. Native elements deliver it all for free. ✅

よくある質問

「Tab、Shift+Tab、Enter、Space:基本キー」レッスンは無料ですか?

はい。「Tab、Shift+Tab、Enter、Space:基本キー」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Web Accessibility Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web Accessibility Academyコースには全4レッスンが含まれています。

「Tab、Shift+Tab、Enter、Space:基本キー」で何を学びますか?

キーボードユーザーがコントロールを移動・実行する方法を学びます。 ブラウザで直接実行するハンズオンコードでWeb Accessibility Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Web Accessibility Academyを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのWeb Accessibility Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。

「Tab、Shift+Tab、Enter、Space:基本キー」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このWeb Accessibility Academyレッスンでコードを書いて実行できますか?

はい。すべてのWeb Accessibility Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. Tab、Shift+Tab、Enter、Space:基本キー
  2. フォーカスを見えるようにする:アウトラインを隠さない
  3. 論理的なTab順序はコンテンツに従う
  4. キーボードトラップを見つける
← Web Accessibility Academyに戻る