📄 wordbookadd.jsp
字号:
<%--
Created by IntelliJ IDEA.
User: ranli
Date: 2007-4-12
Time: 11:30:00
--%>
<%@ page language="java" pageEncoding="GBK"%>
<%@ include file="/WEB-INF/jsp/inc/taglib.jsp"%>
<%@ include file="/WEB-INF/jsp/inc/css.jsp"%>
<%@ include file="/WEB-INF/jsp/inc/js.jsp"%>
<script type="text/javascript" src="js/frame/wordbook.js"></script>
<html>
<head>
<title>添加数据字典页面</title>
</head>
<body>
<form action="wordbookAction.do?method=wordbookAddSave" name="wordForm" method="post">
<table align="center" width="600px" class="table" border="1">
<br>
<thead class="thead">
<tr>
<td colspan="2" align="center">
添加数据字典
</td>
</tr>
</thead>
<tr>
<td width="80px">
字典内容
</td>
<td>
<input type=text class="char" name="nodename" maxlength="18" style="width:200px;"/>
</td>
</tr>
<tr>
<td>
字典说明
</td>
<td>
<textarea rows="6" cols="25" name="remark"></textarea>
</td>
</tr>
<tr>
<td>
类别名称
</td>
<td>
<select class="char" name="fatherid" style="width:120px">
<option>
---请选择---
</option>
<c:forEach var="word" items="${fatherword}" >
<option value="${word.wordid}" <c:if test="${word.wordid==fatherid}">selected</c:if> >${word.nodename}</option>
</c:forEach>
</select>
</td>
</tr>
<tr>
<td>
状态 <span disabled>未启用</span>
</td>
<td>
<input type="hidden" name="state" value="0">
<input type="checkbox" id="ischeck" onClick="statecheck(0);">立即启用
</td>
</tr>
</table>
<br>
<br>
<table align="center" width="600px" border="0">
<tr>
<td align="center">
<input class="btn" type="button" value="保存"
onClick="checkWord1();" style="width:60px;" class="btn"
imageType="ok">
<input class="btn" type="reset" value="取消" style="width:60px;">
<input class="btn" type="button" value="返回" style="width:60px;" imageType="return"
onClick="link('wordbookAction.do?method=wordbook&fatherid=${fatherid}')">
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -