🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
jQuery重定向: ``` <!DOCTYPE html> <html lang="en"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> $(document).ready(function(){ location.replace("https://www.baidu.com/"); }); </script> </body> </html> ``` Meta重定向: ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="refresh" content="0; url=https://www.baidu.com/"> <title>Document</title> </head> <body> </body> </html> ```