執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Location Object</h1> <h2>The replace Property</h2> <button onclick="myFunction()">Replace document</button> <script> function myFunction() { location.replace("https://w3schools.tw") } </script> </body> </html>