1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>history</title>
- </head>
- <body>
- <!-- 地址 location -->
- <button onclick="changeBaiDu()">改变地址为百度</button>
- <script>
- function changeBaiDu(){
- //href 属性
- location.href = "https://www.baidu.com"
- }
- </script>
- </body>
- </html>
|