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で画面ロード時に別の画面を表示する

Posted at

はじめに

画面ロード時に別画面を表示するというニッチなユースケースだと思いますが、記事として残しておきます。

①画面ロード時処理(HTML)

HTMLで画面ロード時に何か処理をしたい場合には<body>タグにonload属性を記述します。

<body onload="画面ロード時処理を記載">

②別の画面を表示

別サイトへ遷移するにはlocation.hrefを利用します。

location.href="遷移させる画面のURL"

さいごに

上記①、②を組み合わせれば、画面読み込み時に別のサイトの画面を表示することができます。

<body onload="location.href='遷移させる画面のURL'"></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?