前端调试的一点新理解

PS: 调试的时候有两种标签,一是Element(已经被变异好的代码)和Source(自己实现的源码), 调试代码应该以SOURCE为例子

PS:调试的时候以Control为准,文件的顺序也是有关系的

 ---------------------------------------------------------------------------------------

2.窗口提交

<!-- 
        在异步提交的方式下,form标签的action和method属性没有意义
    -->
    <form action="01_time.jsp" method="GET">
        <table border="2" align="center">
            <tr>
                <th>用户名</th>
                <td><input type="text" name="username"/></td>
            </tr>
            <tr>
                <th>密码</th>
                <td><input type="password" name="password"/></td>
            </tr>
            <tr>
                <td colspan="2" align="center">
                    <input type="button" value="检查" style="111px"/>
                </td>
            </tr>
        </table>
    </form>
原文地址:https://www.cnblogs.com/bee-home/p/7227851.html