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.

htmlでjavascriptファイルが読み込めない(初歩的なミス)

Posted at

発生内容

index.js
<!DOCTYPE html>
<html lang="ja">
<body>
~中略~
  <script src="main.js" type="text/javascript"></script>
</body>

と記述していたところ、開発者ツール上でmain.jsがソースに表示されず読み込まれていない。

原因

type="text/javascript"の記述が不要のようだった。

修正点

index.js
<!DOCTYPE html>
<html lang="ja">
<body>
~中略~
  <script src="main.js"></script>
</body>

修正後、読み込まれることを確認した。

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?