<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> </head> <body> <script type="text/javascript" src="https://app.ixiulive.com/static/js/jquery-3.1.1.min.js"></script> <script> $.ajaxSetup({ global: false, type: 'post', dataType: "JSON" }) $.ajax({ url: getGoUrl(), success: function (res) { if (res.code == 1) { window.location.href = res.url; } } }) function getGoUrl() { var url = location.href; if (url.indexOf("?") != -1) { var str = url.substr(url.indexOf("?") + 1); var goUrl = str.split('goUrl=')[1]; return goUrl } } </script> </body> </html>