1. html怎麼製作表單

<form>
<table>
<tr>
<td></td>
</tr>
</table>

</form>

2. 請用HTML語言設計一個表單程序

<html>
<head>
<title></title>
<script>
function check() {
var f=0;
var choice = document.getElementsByName("choice");
for(var i=0;i<choice.length;i++){
if(choice[i].checked==true){
f++;
}
}
if(f==0){
alert("請選擇題目!");
f=0;
return false;
}
document.subname.submit();
}
</script>
</head>
<body>
<form name="subname" action="" method="get" onsubmit="return check();">
<font style="font-size:20px;">自願答題統計:</font><br>
<font style="font-size:15px;">您可選擇右面題目:</font>
<input input name="choice" type="checkbox" checked="true">題目一
<input input name="choice" type="checkbox">題目二<br>
<font style="font-size:15px;">您可選擇右面題目:</font>
<input input name="radio" type="radio" checked="true">願意
<input input name="radio" type="radio">不願意<br>
<input input name="button1" type="submit" value="發送表單">
<input input name="button2" type="reset" value="重新填寫">
</form>
</body>
</html>

3. 如何用HTML來製作表格

樓主你好。

html編寫表格的方法有多種。

  1. 最簡單的就是用html標簽<table></table>

    表格是由表頭,表格,錶行組成的。

    表頭<tt></tt>

    錶行<tr></tr>

    表格<td></td>

    表頭和表格都是放在錶行裡面的。

    下面假設寫一個2行1列的表格


  2. <!DOCTYPEhtml>
    <htmllang="en">
    <head>
    <metacharset="UTF-8">

    <title>Table</title>
    </head>
    <body>
    <table>
    <tr><th>第一行</th></tr>
    <tr><td>第二行</td></tr>
    </table>
    </body>
    </html>

4. HTML表單製作問題

你這個要用到JS(JavaScript)才能夠實現的。
在B那個TD直接調用JS輸出的變數即可。
JS實現1~100隨機數回這個功能答你不會寫的話,網路搜一下,很多的。
這里我就不一一寫了,手機不方便。
謝謝點贊!

5. 如何用html製作表格

<html>
<title>三行三來列空白表格源</title>
<head>
<bady>
</br></br></br></br>
<tablewidth="200"border="1"align="center">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</bady>
</head>
</html>
最後,報表可以用FineReport去製作表格,類Excel式,簡單拖拽生成表格,功能強大,個人版免費

6. 需要一個HTML模板,用來做簡單的表單數據錄入

HTML做個數據錄入的模板。如下參考:

1、首先新建一個html,點擊<body></body>中間,先填入表格內容:

7. HTML表單製作

你直接查看它的源代碼,然後修改就可以了,記得把你後端加上!!!

8. 用HTML製作表格

僅供參考
<table border="1" cellpadding="0" cellspacing="0" width="100%">
<tr>
<th height="100" colspan="2" style="font-size:18px;text-align:center">總表頭</th>
</tr>
<tr>
<td width="100" height="80">表頭</td>
<td rowspan="3">內容</td>
</tr>
<tr>
<td height="80">表頭</td>
</tr>
<tr>
<td height="80">表頭</td>
</tr>
</table>
height是代表高度,width是代表寬度,可以隨意修改內
也可以根據百容分比來寫width

9. 怎麼做一個最簡單HTML表單、

//登陸頁面 login.asp<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>登錄框</title>
</head><body>
<form id="form1" name="form1" method="post" action="login_ok.asp">
<p> </p>
<p> </p>
<p> </p>
<table width="376" height="146" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="100" align="right">用戶名:</td>
<td width="276"><input name="username" type="text" id="username" /></td>
</tr>
<tr>
<td align="right">密碼:</td>
<td><input name="password" type="password" id="password" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="提交" />
<input type="button" name="Submit2" value="取消" /></td>
</tr>
</table>
</form>
</body>
</html>
//接收頁面 login_ok.asp<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>OK</title>
</head><body>
<%
username=Request.Form("username")
password=Request.Form("password")
if username="name" and password="123" then
Response.Write("<script>alert('登錄成功!')</script>>")
else
Response.Write("<script>alert('登錄失敗!')</script>")
end if
%></body>
</html>

10. html表單製作

<html>
<head>
<title>登錄制</title>
</head>
<body>
<form action="提交處理頁面" method="post" id="myForm" name="myForm">
<table border="1">
<tr>
<td>用戶昵稱:</td>
<td><input type="text" id="userName" name="userName"/></td>
</tr>
<tr>
<td>密碼:</td>
<td><input type="password" id="password" name="password"</td>
</tr>
<tr>
<td rowspan="2">性別:</td>
<td>男:<input type="radio" id="sex" name="sex" checked="checked"/></td>
</tr>
<tr>
<td>女:<input type="radio" id="sex" name="sex"/></td>
</tr>
<tr>
<td colspan="2" align="middle"><input type="submit" id="submit" name="submit" value="提交"/> <input type="reset" id="reset" name="reset" value="重置"/> <a href="你的地址">注冊</a></td>
</tr>
</table>
</form>
</body>
</html>