「JavaScript」document.locationのサンプル

2021年8月13日

説明
Document.location は読み取り専用のプロパティで、この文書の URL に関する情報を持った Location オブジェクトを返します。

使用例1

document.location = 'http://www.arkgame.com' ;

使用例2

<input type="button" value="作成">

使用例3

<script>
  function funcA(){
   var cft = document.location;
   console.log(cft);
  }
</script>
<input type="button" value="テスト">

 

JavaScript

Posted by arkgame