1. 程式人生 > >html筆記4

html筆記4

put 請求 筆記 type div ext submit 學生 列表

<html>
<body>

<p>這是列表標簽</p>
<ul>
<li>xxx</li>
</ul>
</body>
</html>

  

<html>
<body>
<form action="1.php" method="post">
學生<br>
<input type="text" name="學生">
<br>
性別<br>
<input type="radio" name="sex" value="男">
<br>
<input type="submit" value="登錄">
</body>
</html>

action是點擊了提交按鈕後跳轉的頁面,method是請求方式,submit是提交按鈕radio是勾選的東西,text是文本

  

html筆記4