1
1

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 1 year has passed since last update.

jQueryで要素をIDで指定する場合、`#target_id`とすると最初に現れる要素しか適用されない

Last updated at Posted at 2019-11-14

記述を変えると全部効く

$("#target_id")
// ↓書き換える
$("[id=target_id]")

※そもそも同一idの要素が複数あるのはHTMLの書き方としておかしい

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?