123456789101112131415161718192021222324 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}"/>
- <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
- <script type="text/javascript">
- function afterOnload(){
- var afterLoadJs=[
- '${ctx}/js/hotent/formdata.js',
- '${ctx}/js/hotent/subform.js'
- ];
- ScriptMgr.load({
- scripts : afterLoadJs
- });
- }
- </script>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0" type="main">
- <tr>
- <th width="20%">敏感词项: </th>
- <td><input type="text" id="sensitivewordscount" name="sensitivewordscount" value="${sysSensitileWords.sensitivewordscount}" class="inputText" validate="{required:false}" /></td>
- </tr>
- </table>
- <input type="hidden" name="id" value="${sysSensitileWords.id}" />
|