≪ Today I learned.
RSS購読
    公開日
    タグ
    HTML
    著者
    ダーシノ

    アクセシブルなファイル選択(input[type="file"])の作り方

    ローカルファイルの読み込みのためにもちいる<input type="file">をアクセシブルに実装する。

    よくある良くない例

    <label>
      ファイル選択
      <input type="file">
    </label>
    input[type="file"] {
      display: none;
    }

    良い例: アクセシブルなファイル選択

    <button type="button">
      ファイル選択
      <input type="file">
    </button>
    input[type="file"] {
      display: none;
    }
    button.addEventListener('click', () => input.click())

    参考