index_money2.jsp

来自「宽带网收费系统的前台」· JSP 代码 · 共 42 行

JSP
42
字号
<%@ page contentType="text/html; charset=gb2312" pageEncoding="gb2312" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>Home Page</title>
<style type="text/css">
</style>
<script>
function check(){
if(document.form1.userid.value=="")
{ 
 window.alert("请输入帐号!");
 document.form1.userid.focus();
 return false;
}
}
</script>
</head>
<body bgcolor="#F4FFE4">
      <form id="form1" name="form1" method="post" action="/NetService/dis?actionId=stop1">
        <table width="200" border="1" align="center">
          <tr>
            <td width="44">账号:</td>
            <td width="67"><label>
              <input name="userid" type="text" id="userid" size="18" maxlength="12" />
            </label></td>
            <td width="67"><label>
              <div align="right">
                <input type="submit" name="Submit" value="提交"  onclick="return check()"/>
              </div>
            </label></td>
          </tr>
        </table>
</form>
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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