index.jsp

来自「一个基于Java的新闻发布系统」· JSP 代码 · 共 66 行

JSP
66
字号
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head>
<title>西安建筑科技大学研究生会</title>
<script language="JavaScript">
var msg = "欢迎来建大研究生会,请多提宝贵意见。谢谢! " ;
var interval = 120
var spacelen = 120;
var space10=" ";
var seq=0;
function Scroll() {
len = msg.length;
window.status = msg.substring(0, seq+1);
seq++;
if ( seq >= len ) { 
seq = 0; 
window.status = '';
window.setTimeout("Scroll();", interval );
}
else
window.setTimeout("Scroll();", interval );
} 
Scroll();
</script>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>
<link href="css/mypm_style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style2 {FONT-SIZE: 12pt;color: #FF0000;}
.style3 {FONT-SIZE: 10pt}
.style7 {color: #143F89}
.style12 {color: #000000}
.style13 {color: #FF0000}
.style14 {color: #999999}
-->
</style>
</head>

<body>
<table width="773" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#E8F1F7">
  <tr><td colspan="2"><%@ include file="top.jsp"%></td></tr>
  <tr>
    <td valign="top"><%@ include file="left.jsp"%></td>
	<td valign="top"><%@ include file="right.jsp"%></td>
  </tr>
</table>
<table width="773" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#E8F1F7">
  <tr>
    <td width="100%" align="center"><%@ include file="advertisement.jsp"%></td>
  </tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" >
  <tr>
    <td width="100%" height="10" align="center"><%@ include file="bottom.jsp"%></td>
  </tr>
</table>

⌨️ 快捷键说明

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