javascript 指定したサイトに移動する
- 作成日 2020.11.04
- 更新日 2022.07.16
- javascript
- javascript
javascriptで、location.href使って、指定したサイトに移動するサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
- ブラウザ chrome 103.0.5060.114
location.href使い方
location.hrefを使うと、 指定したサイトに移動することが可能です。
location.href = 'url';
例えば、当サイトに移動にする場合は以下のようにします。
location.href = 'https://mebee.info/';
また、「location.href」を使用すれば、現在表示中のURLを確認することが可能です。
console.log( location.href );
// http://localhost:8080/sample.html
サンプルコード
以下は、
「 サイトへ移動 」ボタンをクリックするとサイトに移動するだけの
サンプルコードとなります。
※cssには「bootstrap material」を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet"
href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css"
integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
</head>
<style>
.main {
margin: 0 auto;
margin-top: 200px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 25px;
}
</style>
<script>
function hoge() {
location.href = 'https://mebee.info/';
}
</script>
<body>
<div class="main">
<button type="button" class="btn btn-raised btn-success" onclick="hoge();">サイトへ移動</button>
</div>
</body>
</html>
移動していることが確認できます。
-
前の記事
C# @(アットマーク)を使ってエスケープを行う 2020.11.03
-
次の記事
javascript 小数の計算結果がおかしくなる 2020.11.04
コメントを書く