JavaScriptとjQueryのセレクタ指定の比較
指定 | JavaScript | jQuery |
---|---|---|
class | document.getElementsByClassName('class名') | $(".class名") |
id | document.getElementById('id名') | $("#id名") |
tag | document.getElementsByTagName('tag名') | $("tag名") |
Go to list of users who liked
More than 3 years have passed since last update.
JavaScriptとjQueryのセレクタ指定の比較
指定 | JavaScript | jQuery |
---|---|---|
class | document.getElementsByClassName('class名') | $(".class名") |
id | document.getElementById('id名') | $("#id名") |
tag | document.getElementsByTagName('tag名') | $("tag名") |
Register as a new user and use Qiita more conveniently
Go to list of users who liked