国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML basic tutorial form hidden fields

Hidden field

Function: A hidden field is an invisible box. Pass some value that you don't want others to see.

Use: Mainly used for PHP backend programs, such as: when modifying the content of a certain news, you need to pass the ID number of the news.

Grammar format: <input type = “hidden” name = “name” value = “default value” />

This will be frequently used in future projects , let’s do some understanding first

Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>用戶注冊</title> </head> <body> <font size="5" color="red">歡迎注冊php.cn</font> <form name="user" method="get" action="" > 用戶名:<input type="text" name="username"/> <br/> 密碼:<input type="password" name="userpwd"/> <br/> 性別:<input type="radio" name="sex" value="男" checked=checked>男 <input type="radio" name="sex" value="女">女 <br/> 愛好:<input type="checkbox" name="hobby" value="運(yùn)動">運(yùn)動 <input type="checkbox" name="hobby" value="看電影">看電影 <input type="checkbox" name="hobby" value="編程" checked="checked">編程 <input type="checkbox" name="hobby" value="宅著">宅著 <br/>所在地: <select name="city"> <option value="北京">北京<option> <option value="上海">上海<option> <option value="杭州" selected="selected">杭州<option> <option value="南京">南京<option> <option value="合肥">合肥<option> </select> <br/>個(gè)性介紹:<br/><textarea name=" introduction" cols="30" rows="4"></textarea> <br/><input type="submit" value="提交信息"/> <input type="reset" value="重填一次"/> <input type="image" src="http://photocdn.sohu.com/20160107/mp52903269_1452135104978_1_th.png" width="70"/> <input type="button" onclick="javascript:window.close()" value="關(guān)閉窗口"/> </form> </body>
submitReset Code