?? dict_edit.jsp
字號:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<html:html locale="true">
<head>
<title>jb-aptech畢業設計項目</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="script/common.js"></script>
<script >
function save()
{
with(document.dictForm)
{
document.dictForm.submit();
}
}
</script>
</head>
<body>
<html:form action="/dict" method="post">
<input type="hidden" name="flag" value="edit"/>
<div class="page_title">數據字典管理 > 編輯數據字典條目</div>
<div class="button_bar">
<button class="common_button" onclick="help('');">幫助</button>
<button class="common_button" onclick="history.go(-1);">返回</button>
<button class="common_button" type="button" onclick="save()">保存</button>
</div>
<table class="query_form_table">
<tr>
<th>編號</th>
<td><html:text property="dict.dictId" readonly="true"/></td>
<th>類別</th>
<td><html:text property="dict.dictType" /><span class="red_star">*</span><br />(需要使用Ajax實現自動補全功能)</td>
</tr>
<tr>
<th>條目</th>
<td><html:text property="dict.dictItem" /><span class="red_star">*</span></td>
<th>值</th>
<td><html:text property="dict.dictValue" /><span class="red_star">*</span></td>
</tr>
<tr>
<th>是否可編輯</th>
<td><input type="checkbox" value="1" name="dict.dictIsEditable" checked /> </td>
<th> </th>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center"></td>
</tr>
</table>
</html:form>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -