🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ <!DOCTYPE html> <html> <head> <title>302 Redirect Example</title> </head> <body> <p>Click the button to trigger a 302 redirect:</p> <button id="redirectButton">Trigger 302 Redirect</button> <script> document.getElementById("redirectButton").addEventListener("click", function () { // 发起GET请求到服务器的/redirect路径 window.location.href = "http://localhost:8080/redirect"; }); </script> </body> </html> ~~~