0
0

More than 1 year has passed since last update.

オレオレselectorメモ

Last updated at Posted at 2023-08-17

基本

タグ[key=val]

否定

:not(div)

and

div[id='hoge']

or

a,b

子要素(hogeの下の全てのp)

#hoge p

属性(attribute)の指定

#hoge[name]

idがhogeに一致

[id='hoge']

idがhogeで始まる

[id^='hoge']

idがhogeで終わる

[id$='hoge']

idがhogeを含む

[id*='hoge']

disabledではないチェックボックス

input[type='checkbox']:not([disabled])

チェックされていないチェックボックス

input[type='checkbox']:not([checked])
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