Commit 50cf8b62 authored by 赵桢's avatar 赵桢

默认列表

parent c4145d10
...@@ -59,8 +59,29 @@ ...@@ -59,8 +59,29 @@
<script src="<%=request.getContextPath()%>/res/js/education/questionnaire_Administration_list.js"></script> <script src="<%=request.getContextPath()%>/res/js/education/questionnaire_Administration_list.js"></script>
<script> <script>
<%--$(document).ready(function () {--%>
<%-- //获取token里面的内容--%>
<%-- <%--%>
<%-- Cookie[] cookies = request.getCookies();--%>
<%-- String SESSION = "";--%>
<%-- for(int i = 0; i < cookies.length; i++) {--%>
<%-- if ("SESSION".equals(cookies[i].getName())) {--%>
<%-- SESSION = cookies[i].getValue();--%>
<%-- }--%>
<%-- }--%>
<%-- request.setAttribute("SESSION", SESSION);--%>
<%-- %>--%>
<%-- &lt;%&ndash;var url="http://localhost:8081/#/one?session=<%=request.getAttribute("SESSION")%>"&ndash;%&gt;--%>
<%-- var url = "http://localhost:8081/#/one?session=<%=request.getAttribute("SESSION")%>&realID=" + createId--%>
<%-- &lt;%&ndash;var url = "http://localhost:8081/#/one?session=" + <%=request.getAttribute("SESSION")%> + "&realID=" + <%=request.getSession().getAttribute("realID")%>;&ndash;%&gt;--%>
<%-- // alert(url)--%>
<%-- var iframe = $('<iframe width="100%" height="100%" src="' + url + '"></iframe>')--%>
<%-- $("#iframe").append(iframe)--%>
<%--})--%>
$(document).ready(function () { $(document).ready(function () {
//获取token里面的内容 // 获取 token 里的内容
<% <%
Cookie[] cookies = request.getCookies(); Cookie[] cookies = request.getCookies();
String SESSION = ""; String SESSION = "";
...@@ -71,15 +92,23 @@ ...@@ -71,15 +92,23 @@
} }
} }
request.setAttribute("SESSION", SESSION); request.setAttribute("SESSION", SESSION);
%> %>
<%--var url="http://localhost:8081/#/one?session=<%=request.getAttribute("SESSION")%>"--%>
var url = "http://localhost:8081/#/one?session=<%=request.getAttribute("SESSION")%>&realID=" + createId // 将 session ID 保存到浏览器的 sessionStorage 中
// alert(url) var sessionId = "<%=request.getSession().getId()%>";
var iframe = $('<iframe width="100%" height="100%" src="' + url + '"></iframe>') sessionStorage.setItem("sessionId", sessionId);
$("#iframe").append(iframe)
}) // 构造 URL
<%--var url = "http://localhost:8081/#/one?session=" + <%=request.getAttribute("SESSION")%> +"&realID=" + <%=request.getSession().getAttribute("realID")%>;--%>
var url = "http://localhost:8081/#/one?session=<%=request.getAttribute("SESSION")%>"
// 创建 iframe
var iframe = $('<iframe width="100%" height="100%" src="' + url + '"></iframe>');
// 将 iframe 添加到页面中
$("#iframe").append(iframe);
});
</script> </script>
<div class="modal fade" id="loadingModal" backdrop="static" keyboard="false"> <div class="modal fade" id="loadingModal" backdrop="static" keyboard="false">
     
<div style="width: 200px;height:20px; z-index: 20000; position: absolute; text-align: center; left: 50%; top: 50%;margin-left:-100px;margin-top:-10px"> <div style="width: 200px;height:20px; z-index: 20000; position: absolute; text-align: center; left: 50%; top: 50%;margin-left:-100px;margin-top:-10px">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment