0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Webページのチェックボックスを全て一発でチェックする方法

Last updated at Posted at 2019-11-22

前提

WebページにJQueryが使われていること

やり方

ブラウザでデべロッパーツールを開き、consoleタブで以下のコマンドを貼り付けてエンター押下で実施すると画面上に表示されている全てのチェックボックスにチェックが付きます。

$('input[type="checkbox"]').prop("checked",true);

全てにチェックがつくので予期せぬところにチェックされている可能性があるため、実施後はよく画面を確認してください。
(操作ミスによるトラブルは責任を負いませんのでご了承ください。)

作業効率化に役立ててください。

参考画像

Google Chrome デベロッパーツール(ブラウザ右上にある3つの点から探せる)
デベロッパーツール.png

consoleタブでコマンド実施後
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?