要使用JavaScript重定向到另一个网页,代码如下-
<!DOCTYPE html> <html> <head> <h1>Redirect to a Webpage Example</h1> <button class="redirectBtn">Redirect</button> <h2>Click the above button to Redirect to another Webpage</h2> <script> document .querySelector(".redirectBtn") .addEventListener("click", redirectFunction); function redirectFunction() { location.href("https://(cainiaojc.com)/"); } </script> </body> </html>
输出结果
上面的代码将产生以下输出-
点击“重定向”按钮后,我们将被重定向到新站点-