choosetype.jsp

来自「本人课程设计时做的一个用struts框架实现的基于cmmi2的项目管理系统的原型」· JSP 代码 · 共 50 行

JSP
50
字号
<html>
<head>
<title>选择所属变更类型&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="../../common/olstyle.css">
</head>
<script language="JavaScript">
function btnSelect_onclick() {
    var usernameList="";
    var table,i,j,e=null;
    table = mainFrame.divMain.children(0);
    var selected=false;
    for(i = 1;i < table.rows.length; i++){
	e = table.rows(i).cells(1).all.tags("input")[0];
	if(e.checked) {
            selected=true;
        }
    }
    for(i = 1;i < table.rows.length; i++){
        e = table.rows(i).cells(1).all.tags("input")[0];
        if(e.checked){
	    if (usernameList != "") usernameList += ",";
            usernameList += e.value;
        }
    }
    returnValue=usernameList;
    close();
}
</script>
<body>
<TABLE  width="100%" id="idToolbar" cellpadding='0' cellspacing='0'>
  <TR align="left" valign="top">
    <TD width="*" NOWRAP>&nbsp;</TD>
    <TD width="60" NOWRAP> <A class="tbButton" id="add" HREF="#"	Title="返回选择的记录纪录" onclick="return btnSelect_onclick()"><img src="../../images/dialog-ok.gif"  align=absmiddle  border="0"> 确定</A></TD>
	<TD width="5" NOWRAP>&nbsp;</TD>
    <TD width="60" NOWRAP><a class="tbButton" id="recover" href="#" onClick="window.close();" title="取消"><img align=absmiddle src="../../images/dialog-cancel.gif" border="0"> 取消</a>
    </TD>
	<TD width="20" NOWRAP>&nbsp;</TD>
  </tr>
</table>
<TABLE  width="100%" height="230" id="idToolbar" cellpadding='0' cellspacing='0'>
<tr>
    <TD width="20" NOWRAP>&nbsp;</TD>
	<td width="100%" height="100%"><iframe height="100%" width="100%" frameborder="0" name="mainFrame" scrolling="auto"  src="TypeList.jsp"></iframe></td>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?