0
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 3 years have passed since last update.

【JavaScript】エラー:Uncaught ReferenceError: Pace is not defined at

Posted at

#【JavaScript】エラー:Uncaught ReferenceError: Pace is not defined at

###使用環境

  • XAMPP 8.0 (PHP 8.0)
  • windows10

##背景
websiteを作成中に処理を共通化したらクリックイベントが発動しなくなった。あるページでは問題ないのに違うページでは動かない!なぜ?

##エラー
エラー:Uncaught ReferenceError: Pace is not defined at

LoadingのライブラリPaceを使用していたため、それにまつわるエラーだということは分かった。

##原因
外部JSファイルを読み込む順番だった。
外部JS→jQueryファイル→Paceファイルの順にファイルを読み込んでおり、Paceに関連する処理をJSファイルの1番上に持ってきていたため、JSファイルを読み込んだときに、Paceに関する処理がわからない!と怒られていた模様。

##解決方法
外部JSファイルの読み込み順をLoading(Pace)ファイル→jQueryファイル→JSファイルの順番としたところ解決。

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