2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[jQuery]optionタグを発火点にしたい

Last updated at Posted at 2019-08-04

ユーザーの選択に対してリアクションを返す機能を実装しようとした際、selectタグ内の
optionタグを発火点にしようとして四苦八苦したので共有します。

selecrtタグ?美味いの?と思う方は以下のリンクを読んでみてください
[-HTMLタグリファレンス - HTMLクイックリファレンス] (http://www.htmq.com/html/select.shtml)

optionタグは発火点にできない

結論から言うとoptionタグは発火点にできません。しかし、selectタグ自身を発火点にすることができます。

js
$(function(){
  $(selectタグ).on("change", function(){
   したい処理
  });
});

selectタグの中身が変わる(optionタグがクリックされる)たびに発火しているのですね。
ちなみに作ったのはこんなものです。
qiitad.mov.gif

実装に当たって苦労したこと

seedsファイルで西暦テーブルを作りたい

2
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?