<TABLE border="0" align=center cellpadding=0 cellspacing=1 > <form method="POST" action="e" onsubmit="return check_input(this)">表示什么
时间: 2023-11-11 16:15:48 浏览: 172
cellpadding=0 cellspacing=0的css替代写法
这段 HTML 代码包含了一个表格和一个表单。其中,`<table>` 标签用于定义表格,`border` 属性用于设置表格边框的宽度,`align` 属性用于设置表格在页面中的水平对齐方式,`cellpadding` 属性用于设置单元格内部的填充(即单元格内容与边框之间的距离),`cellspacing` 属性用于设置单元格之间的间距。
`<form>` 标签用于定义表单,其中 `method` 属性用于设置表单提交的方式,`action` 属性用于设置表单提交的目标 URL。在这个例子中,表单的提交方式为 POST,目标 URL 为 "e"。
另外,`onsubmit="return check_input(this)"` 属性用于指定表单提交时所要调用的 JavaScript 函数。具体来说,`return check_input(this)` 会在表单提交之前先调用 `check_input()` 函数进行表单验证,如果表单验证不通过则不会提交表单,如果验证通过则会提交表单到目标 URL。
综上所述,这段 HTML 代码表示一个包含表格和表单的页面,并且在表单提交时会进行表单验证。
阅读全文
相关推荐
<%-- Created by IntelliJ IDEA. User: syp Date: 2023/5/22 Time: 13:59 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Denglu</title> </head> <body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"> <fieldset style="width: auto; margin: 0px auto"> <legend> 欢迎使用常州工业职业技术学院人员管理系统 </legend>
<form action="loginSuccess.action"> 用户:<input type="text" name="username"/>
密码:<input type="password" name="password"/>
<input type="submit" value="登录"/> 注册 </form> </fieldset> </body> </html>
<form action="loginSuccess.action"> 用户:<input type="text" name="username"/>
密码:<input type="password" name="password"/>
<input type="submit" value="登录"/> 注册 </form> </fieldset>