• 测试



    <!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>3</title>
    <script>
    function r()
    {

    var username=document.getElementById("username");

    var pass=document.getElementById("password");
    if(username.value=="")
    {
    alert("请输入用户名");
    username.focus();
    return;
    }
    if(pass.value=="")
    {
    alert("请输入密码");
    return;
    }
    return true;
    }
    </script>
    </head>
    <body>
    <form>
    <table width="350" bgcolor="#ccffcc" style="border-color" border="1">
    <tr align=center>
    <td>用户名</td><td><input type="text" name="username" id="username"></td>
    </tr>
    <tr align=center><td>密 码</td><td><input type="password" name="password" id="password"></td></tr>
    <tr align=center><td>验证码</td><td><input type="text" name="yanzheng"></td></tr>
    <tr align=center><td colspan="2"><input type="button" value="登 录" onclick="r();"/> <input type="reset" value="重 置"/></td></tr>

    </table>
    </form>
    </body>
    </html>

  • 相关阅读:
    【备忘】(可持久化)线段树
    和别人一起搞的模拟赛 (1) 题解
    和别人一起搞的模拟赛 (1) 题面
    【讲课】基础的数论知识
    斐波那契
    luogu P6222
    luogu P4240
    二分图网络流做题记录
    ds 瞎做
    P6943 [ICPC2018 WF]Conquer The World 解题报告
  • 原文地址:https://www.cnblogs.com/chenyongblog/p/3617017.html
Copyright © 2020-2023  润新知