2021-3-1-9-30
*servlet暫緩*
總結如下(簡要,屬性寫入示例):
-
内嵌(網頁内嵌入網頁)
<iframe src="" width="" height="" name="">
</iframe>(注釋:name屬性用以作為超連結的target目标)
-
架構(劃分網頁結構)
<frameset cols=“10%,*,10%”>
<frame src="" />
</frameset>
-
表單(表單域)
<form>
文本<input type=“text” name=“uname” />
密碼<input type=“password” name=“pwd” />
多選<input type=“checkbox” name=“fav” />
單選<input type=“radio” name=“sex” />
送出按鈕<input type=“submit” value=“送出” />
注意:另外的checked屬性,形如:checked="checked"可以為單選、多選、以及後面的下拉框設定預設顯示值。
</form>
-
下拉框
<select name=“city”>
<option value=“1”>北京</option>
<option value=“2”>上海</option>
<option value=“1”>深圳</option>
</select>
-
文本域
生成一塊文本域,比如使用者填寫自我介紹、發表評論的區域
<textarea name="" rows="" cols="" ></testarea>
-
普通按鈕
<input type=“button” name="" id="" value="" />
注意:name屬性可以不需要填寫,存在name屬性就會被送出,此時需要根據情況确定,id屬性需與css技術相配合。
-
隐藏标簽
<input type=“hidden” name="" id="" value="" />
作用:送出隐藏資訊
至此