easyui实现的页面显示问题

发布于 2021-11-25 12:03:35 字数 4742 浏览 414 评论 3

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib uri="/WEB-INF/tld/page.tld" prefix="p"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title>新增用户基本信息</title>
		<meta http-equiv="cache-control" content="no-cache">
		<meta http-equiv="expires" content="0">    
		<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
		<meta http-equiv="description" content="This is my page">
		
		<link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/js/easyui/themes/default/easyui.css"/>
		<link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/js/easyui/themes/icon.css"/>
		<link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/js/easyui/demo.css"/>
		<script type="text/javascript" src="<%=request.getContextPath() %>/js/easyui/jquery.min.js"></script>
		<%-- <script type="text/javascript" src="<%=request.getContextPath() %>/js/easyui/jquery.easyui.min.js"></script> --%>
		<script type="text/javascript"></script>
	</head>
	
	<body>
		<c:forEach var="r" items="${context_entt_e_xt_yong_hu.roleIds}">
			     <c:if test="${r eq '4'}">
			        <c:set var="statusFlag" value="1"></c:set>
			     </c:if>
			     <c:if test="${r eq '1' or r eq '8'}">
			        <c:set var="statusFlag" value="2"></c:set>
			     </c:if>
			     <c:if test="${r eq '2' or r eq '3'}">
			        <c:set var="statusFlag" value="3"></c:set>
			     </c:if>
			     <c:if test="${r eq '6' or r eq '7'}">
			        <c:set var="statusFlag" value="4"></c:set>
			     </c:if>
 	</c:forEach>
 	
	<div id="editUserAddDlg" class="easyui-dialog" data-options="top:100,left:400,closed:true,modal:true" title="新增用户" style="width:600px">
		<div style="padding:10px 60px 10px 20px">
		 <form id="addUserForm" method="post">
			<table cellpadding="5" width="100%" height="100%">
  				<tr>
  					<td>用户名</td>
					<td><input id="input_username" name="input_username" class="easyui-validatebox" data-options="value:null,required:true" style="width:200px" onblur="isExistUsername()"/></td>
  				</tr>
  				<tr>
      				<td>密码</td>
    				<td><input id="input_password" name="input_password" class="easyui-validatebox" data-options="value:null,required:true,validType:'length[3,20]'" style="width:200px" onblur="checkPwd()"/></td>    
  				</tr>
  				<tr>
  					<td>单位名称</td>
  					<td>
  						<input id="realname" class="easyui-combobox" data-options="" style="width:300px"> 
  						</input>
  					</td>
  				</tr>
  				<tr>
      				<td>角色</td>
      				<td>
		 		    	<input type="checkbox" name="input_roleChinese" value="1" <c:if test="${fn:contains(projecttypes,'1')}">checked</c:if>/>管理员
					    <input type="checkbox" name="input_roleChinese" value="2" <c:if test="${fn:contains(projecttypes,'2')}">checked</c:if>/>区领导
					    <input type="checkbox" name="input_roleChinese" value="3" <c:if test="${fn:contains(projecttypes,'3')}">checked</c:if>/>监管者 
					    <input type="checkbox" name="input_roleChinese" value="4" <c:if test="${fn:contains(projecttypes,'4')}">checked</c:if>/>建设者
					    <input type="checkbox" name="input_roleChinese" value="5" <c:if test="${fn:contains(projecttypes,'5')}">checked</c:if>/>代建者
					    <input type="checkbox" name="input_roleChinese" value="6" <c:if test="${fn:contains(projecttypes,'6')}">checked</c:if>/>责任人
					</td>
				</tr>
			</table>
<!-- 	    按钮 -->
	    	<div style="text-align:center;padding:5px">
				<input type="button" value="保存" onclick="save()"/>
				<input type="button" value="返回" onclick="return()"/>
			</div>
		</form>
		<div>
	</div>
	</body> 
 </html>


页面现实问题如下图:
为什么两行之间间隔那么大?代码该怎么修改?谢谢!!!  



如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无边思念无边月 2021-12-01 05:35:22

谢谢你的回复!我在<div id="editUserAddDlg" class="easyui-dialog" data-options="top:100,left:400,closed:true,modal:true" title="新增用户" style="width:600px">中的style里加了height就可以了

秉烛思 2021-11-28 00:06:59

没注释F12看是不是有错误

好听的两个字的网名 2021-11-27 21:03:53

将第19行代码<%-- <script type="text/javascript"src="<%=request.getContextPath() %>/js/easyui/jquery.easyui.min.js"></script> --%>注释掉,页面可以显示出来;如果不注释,整个页面都无法显示,请问这是怎么回事?求解!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文