运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Location Object</h1> <h2>The href Property</h2> <p>Click the button to set the href value to https://w3schools.org.cn.</p> <button onclick="myFunction()">Take me to w3schools.com</button> <script> function myFunction() { location.href = "https://w3schools.org.cn"; } </script> </body> </html>