我是靠谱客的博主 笑点低外套,最近开发中收集的这篇文章主要介绍HTML form应用包括复选框、单选按钮的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

包括复选框,单选按钮的使用

复制代码
代码如下:

<!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>
<h1>
<strong>登录界面</strong>
</h1>
<form name="f1" id="f1">
<table border="0" width="457" height="280" cellspacing="1" cellpadding="1">
<tbody><tr>
<td width="44">Login:</td>
<td width="406"><input type="text" name="login" id="login" size=""></input></td>
</tr>
<tr><td colspan="3" align="left">专业:

<input type="radio" name="type" value="computer" checked="">计算机应用</input>
<input type="radio" name="type" value="software">软件工程</input>
<input type="radio" name="type" value="auto">自动化</input> </td>
</tr>
<tr><td colspan="4" align="left">课程:

<input type="checkbox" value="">计算机网络</input>
<input type="checkbox" value="">数据库原理</input>
<input type="checkbox" value="">WEB程序设计</input>
<input type="checkbox" value="">Java编程</input></td>
</tr>
</tbody></table>
</form>
</body>
</html>

实际效果:

登录界面

最后

以上就是笑点低外套为你收集整理的HTML form应用包括复选框、单选按钮的使用的全部内容,希望文章能够帮你解决HTML form应用包括复选框、单选按钮的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(94)

评论列表共有 0 条评论

立即
投稿
返回
顶部