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

ページ読み込み時の関数呼び出し

Posted at

外部ファイルに定義した関数をページ読み込み時に呼び出す方法のメモ

###呼び出す関数
load()

###方法1:失敗

<body onload="load()">
</body>

これじゃ、load関数呼び出せなかったorz

###方法2:成功

<script>
	window.onload = function(){ load();}
</script>

これでload関数呼び出せた(´∀`)

##参考URL

1
1
1

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?