location.replace
ページのURLを指定されたURLに置き換えます。
構文
location.replace(URL)
例文
<html> <head> <title>location.replace</title> <script type="text/javascript"><!-- function pageReplace () { location.replace("http://www.openspc2.org/"); } // --></script> </head> <body> <form> <input type="button" value="replace" onClick="pageReplace()"> </form> </body> </html>
関連記事
- location.search
- location.reload
- location.protocol
- location.port
- location.pathname
- location.href
- location.hostname
- location.host
- location.hash
- location.assign
スポンサーリンク