onresetexample2.htm

来自「这是javascript高级程序设计的源码」· HTM 代码 · 共 40 行

HTM
40
字号
<html>
    <head>
        <title>OnReset Example</title>
    </head>
    <body>
        <form method="post" action="javascript:alert('Submitted')" onreset="alert('I am resetting')">
            <p>Type some values into the textboxes and then press Reset.</p>
            
            <!-- regular textbox -->
            <label for="txtName">Name:</label><br />
            <input type="text" id="txtName" name="txtName" /><br />
            
            <!-- password textbox -->
            <label for="txtPassword">Password:</label><br />
            <input type="password" id="txtPassword" name="txtPassword" /><br />
            
            <!-- age comboxbox (drop-down) -->
            <label for="selAge">Age:</label><br />
            <select name="selAge" id="selAge">
                <option>18-21</option>
                <option>22-25</option>
                <option>26-29</option>
                <option>30-35</option>
                <option>Over 35</option>
            </select><br />
            
            <!-- multiline textbox -->
            <label for="txtComments">Comments:</label><br />
            <textarea rows="10" cols="50" id="txtComments" name="txtComments"></textarea><br />
            
            <!-- submit button -->
            <input type="submit" value="Submit Form" />
            
            <!-- reset button -->
            <input type="button" value="Reset" onclick="document.forms[0].reset()" />
      
        </form>
    </body>
</html>

⌨️ 快捷键说明

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