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"); //创建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"; //将报表验证用户名密码的地址指向此iframe
- if (scr.attachEvent) {
- //判断是否为ie浏览器
- scr.attachEvent("onload", function () {
- //如果为ie浏览器则页面加载完成后立即执行
- window.location = "https://202.99.219.114:28888/qjny/report"; //直接跳转到数据决策系统
- });
- } else {
- scr.onload = function () {
- //其他浏览器则重新加载onload事件
- /*跳转到指定登录成功页面,index.jsp
- var f = document.getElementById("login");
- f.submit(); */
- window.location = "https://202.99.219.114:28888/qjny/report"; //直接跳转到数据决策系统
- };
- }
- document.getElementsByTagName("head")[0].appendChild(scr); //将iframe标签嵌入到head中
- }
- doSubmit();
- </script>
- </head>
- <body>
- <!-- <p>请登录</p>
- <form id="login" name="login" method="POST" action="">
- <p>用户名:<input id="username" type="text" name="username" /></p>
- <p>密 码:<input id="password" type="password" name="password" /></p>
- <input type="button" value="登录" onClick="doSubmit()" />
- </form> -->
- </body>
- </html>
|