求html中input的用法 及属性

来源:百度知道 编辑:UC知道 时间:2024/07/02 09:39:44
求html中input的用法 及属性

<html><head><title>input element example</title></head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form2" method="post" action="">
<p>This is a form with several input elements.</p>
<input type="text" name="textfield2" value="This is a text field" size="30"><br>
<input type="checkbox" name="checkbox2" value="checkbox">
A checkbox.<br>
<input type="radio" name="radiobutton" value="radiobutton1">
<input type="radio" name="radiobutton" value="radiobutton2">
A set of radio buttons.<br>
<input type="button" name="myButton2" value="Submit">
A submit button.<br>
<input type="button" name="my