?? showallnotice.jsp
字號:
<%@ page language="java" pageEncoding="utf-8"%>
<%@page import="com.jxyd.common.Fenye"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<title>庫存圖書</title>
<link href="<%=basePath%>/css/style.css" rel="stylesheet">
<link href="<%=basePath%>/css/main.css" rel="stylesheet">
</head>
<script type="text/javascript">
function radioshifou(id){
var yn=document.getElementById("yn"+id).value;
if( confirm('確定修改?')){
document.showform.action="notice.do?method=UpdateNoticeYn&id="+id+"&yn="+yn;
document.showform.submit();
return true;
}
}
</script>
<body>
<form action="" name="showform" method="post">
<!--RIGHT-->
<div class="right">
<div class="content">
<p align="center">
管理已發(fā)布公告
</p>
<div class="data_bot1" id="lendinfo" align="center">
<table>
<tr>
<th>
編號
</th>
<th>
主題
</th>
<th>
內(nèi)容
</th>
<th>
可見類型
</th>
<th>
發(fā)布時間
</th>
<th>
操作
</th>
</tr>
<logic:present name="notice">
<logic:iterate id="nb" name="notice" type="com.jxyd.vo.NoticeBean">
<tr>
<td>
<%=nb.getId() %>
</td>
<td>
<%=nb.getTitle() %>
</td>
<td>
<MARQUEE scrollAmount=2 width="100%" height=22 onmouseover="this.stop()"
onmouseout="this.start()" id=<%=nb.getId() %>><%=nb.getContent()%>
</MARQUEE>
</td>
<td>
<%=nb.getType() %>
</td>
<td>
<%=nb.getAddDate() %>
</td>
<td>
<input type="radio" id="yn<%=nb.getId() %>"
value="<%=nb.getYesno() %>"
onclick="radioshifou(<%=nb.getId()%>)"
<% if(nb.getYesno()==1){ %> checked="checked" <%} %>>
是
<input type="radio" id="yn<%=nb.getId() %>"
value="<%=nb.getYesno() %>"
onclick="radioshifou(<%=nb.getId()%>)"
<% if(nb.getYesno()==2){ %> checked="checked" <%} %>>
否
</td>
<td>
</td>
<td>
</td>
</tr>
</logic:iterate>
</logic:present>
</table>
</div>
<%
Fenye fenye = (Fenye) request.getAttribute("fenye");
if (fenye != null) {
%>
<%=fenye.getDisplay()%>
<%
}
%>
</div>
</div>
</form>
</body>
</html:html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -