当前位置:首页 > 服务器 > 正文内容

HTML表单(Forms)

<form action="demo_form.php" method="post/get">

<input type="text" name="email" size="40" maxlength="50">

 <input type="password">

 <input type="checkbox" checked="checked">

 <input type="radio" checked="checked">

 <input type="submit" value="Send">

 <input type="reset">

 <input type="hidden">

 <select>

 <option>苹果</option>

 <option selected="selected">香蕉</option>

 <option>樱桃</option>

 </select>

<textarea name="comment" rows="60" cols="20"></textarea>

 </form>




分享给朋友:

相关文章

HTML图片实例代码2年前 (2021-11-07)
HTML颜色值2年前 (2021-11-03)
HTML颜色2年前 (2021-11-03)
XHTML与HTML有什么区别?2年前 (2021-11-04)