html代码:
<%@ page contentType="text/html;charset=UTF-8" %>
<%@taglib prefix="c" uri="https://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" charset="UTF-8"
<span style="white-space:pre"> </span>src="${ctx}/resources/js/jquery-1.7.1.min.js"></script>
</head>
<body class="easyui-layout" style="height: 100%" onload="searchData();">
<div>
<tr>
<td>设置自动刷新时间:<s:select id="s1" name="timer" list="#{'0':'30秒','1':'1分钟','2':'5分钟'}" theme="simple" ></s:select></td>
<td><input type="button" value="待定"/></td>
<td><input type="button" value="待定"/></td>
<td><input type="button" value="待定"/></td>
</tr>
</div>
<div id="div" >
<table id="resultTable" width="100%" border="1" align="center" cellPadding="0" cellSpacing="0" >
<thead>
<span style="white-space:pre"> </span><tr>
<td nowrap >专家编号</td>
<td nowrap >专家分类</td>
<td nowrap >描述</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>
<%@ page contentType="text/html;ch