0
0

More than 3 years have passed since last update.

JavaScript jQuery セレクタ指定の仕方

Last updated at Posted at 2020-12-24

JavaScriptとjQueryのセレクタ指定の比較

指定 JavaScript jQuery
class    document.getElementsByClassName('class名')   $(".class名")
id document.getElementById('id名') $("#id名")
tag document.getElementsByTagName('tag名') $("tag名")
0
0
2

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