LoginSignup
1
1

More than 5 years have passed since last update.

フォーム必須チェック用備忘録

Posted at

フォームの必須項目チェック

フォームで必須項目使う事はよくあると思いますが、それの入力がされているかチェック方法の備忘録です。

チェックボックスにチェックが入っている個数

$('input[type="checkbox"]:checked').length

選ばれていないセレクトボックス

$('select option[value=""]:selected').length
※value部分は物によります

他随時追加予定

1
1
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
1
1