11
5

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】Syntax error, unrecognized expression とは

Posted at

jQueryではバージョンが違うと、今まで正常に動作していたものでもエラーが出ることがあります。
「Syntax error, unrecognized expression」はそういった場合にありがちなエラーメッセージで、多くは引用符に問題がある場合に出現します。

例) $('a[href^=#]').click(function(){

これは、jQuery1.11.2では正常に動作したコードですが、jQuery3.1.1では上記のエラーメッセージが出たコードです。
この場合下記のように修正することで、エラーは解消されます。

正) $('a[href^="#"]').click(function(){

11
5
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
11
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?