29 lines
1005 B
Plaintext
29 lines
1005 B
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
|
|
<html>
|
|
<%String contextPath = request.getContextPath();%>
|
|
<%String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath();%>
|
|
<%String serverPath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort();%>
|
|
|
|
<%-- 引入jQuery --%>
|
|
<script type="text/javascript" src="<%=contextPath%>/node_modules/jquery/dist/jquery.min.js" charset="utf-8"></script>
|
|
<script type="text/javascript" src="<%=contextPath%>/plugins/jquery-ui/jquery-ui.min.js" charset="utf-8"></script>
|
|
|
|
<head>
|
|
<title>Title</title>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
|
|
var url = 'http://localhost:8081/xxl-job-admin/jobinfo';
|
|
$('#wld').attr('src', url);
|
|
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<iframe id="wld" src="" height="100%" width="100%" name="demo" scrolling="auto"></iframe>
|
|
</body>
|
|
</html>
|