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

HTMLでjavascriptを使う方法

Posted at

どうも未来電子でインターンをしているものです。
今回はHTMLでjavascriptを使う方法をまとめたいと思います。
私はプログラミング初心者ですので、間違いがあるかもしれません。
お手柔らかにお願いします。

もくじ

・インラインスクリプト
・外部ファイル

インラインスクリプト

htmlないにjavascriptを直接記述することができます。

<script></script>で囲むことで記述できます

<script>
console.log("hello world")
</script>

>>>hello world

となります。

外部ファイル

外部のjsファイルを読み込んで使うこともできます。
例えばsample.jsというファイルがあったとすれば

<script src="sample.js"></script>
       

と記述することで外部ファイル,sample.jsを使うことができます。

まとめ

以上、HTMLでjavascriptを使う方法をまとめました。

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