web-表单
Posted nsgbdzm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web-表单相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8">
<title>火影忍者</title>
</head>
<body>
<form action="" method="get" class="form-example">
<div class="form-example">
<input type="checkbox" name="vehicle" value="like">你喜欢火影<br>
<input type="checkbox" name="vehicle" value="dislike">你不喜欢火影<br>
</div>
<div class="form-example">
<lable for="name">输入你的账户名:</label>
<select name="name">
<option value="mingren">漩涡鸣人</option>
<option value="zuozu">宇智波佐助</option>
<option value="woailuo">我爱罗</option>
</select>
</div>
<div class="form-example">
<label for="password">输入你的密码:</label>
<input type="password" name="psd">
</div>
<div class="form-example">
<input type="submit" value="提交">
</div>
</form>
</body>
</html>
以上是关于web-表单的主要内容,如果未能解决你的问题,请参考以下文章