123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=10" />
- <script type="text/javascript">
- function doSubmit() {
- var username = document.getElementById("username").value;
- var password = document.getElementById("password").value;
- var scr = document.createElement("iframe");
- scr.src =
- "https://202.99.219.114:28888/qjny/report/login/cross/domain?fine_username=" +
- encodeURIComponent(username) +
- "&fine_password=" +
- encodeURIComponent(password) +
- "&validity=" +
- -1 +
- "&callback=callback";
- if (scr.attachEvent) {
-
- scr.attachEvent("onload", function () {
-
- window.location = "https://202.99.219.114:28888/qjny/report";
- });
- } else {
- scr.onload = function () {
-
-
- window.location = "https://202.99.219.114:28888/qjny/report";
- };
- }
- document.getElementsByTagName("head")[0].appendChild(scr);
- }
- doSubmit();
- </script>
- </head>
- <body>
-
- </body>
- </html>
|