LoginSignup
30
30

More than 5 years have passed since last update.

jQueryの一歩進んだ知識

Posted at

Namespace Events(名前空間)

jQueryはイベントに名前空間を持たせることができる。html/cssで言ったらクラスをつけるのに似ている。

イベント(clickだとかscrollだとか)に名前空間をつけるメリットとして、off()でイベントを削除するときに、その名前空間を持ったイベントのみを消すことができることが挙げられる。

namespace.js

$("button").on("click.event1", submit())
           .on("click.event2", confirm())
           .on("mouseover.event1", changeColor());

//buttonのclickイベントがすべて消える
$("button").off("click");

//.event1に属するclickイベントのみ消える
$("button").off("click.event1");

//.event1に属するイベントがすべて消える
$("button").off(".event1");


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