LoginSignup
4
1

More than 3 years have passed since last update.

バニラjsでjqueryの$を使う

Last updated at Posted at 2018-06-15

jqueryの$をバニラjsで使う

バニラjsでいちいちdocument.querySelectorとか、document.getElementByIdとか書くのは面倒なので$で済ましたい。

コード

es6なら一行で書ける

let $ = (selector) => document.querySelector(selector)

bindメソッドを使う方法

let $ = document.querySelector.bind(document)

See the Pen jquery$ by kodamaworld (@kodamaworld) on CodePen.

See the Pen jquery$ by kodama (@kodamaparadise) on CodePen.

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