1. 程式人生 > 其它 >Uncaught TypeError: document.getElementsById is not a function

Uncaught TypeError: document.getElementsById is not a function

表單 form
<form action="" method="post"></form>
action=""將表單提交到對應地址
method="get/post"提交方式
get獲取
post傳輸

1.如何實現表單提交
①<form action="提交地址"></form>
②提交按鈕<button type="submit">提交</button>(button寫到form裡面)

表單控制元件
1.單行文字輸入框text
<input type="text">
type型別 text 文字
2.密碼password (隱藏)
<input type="password" placeholder>
3.單選按鈕 radio
<input type="radio">
單選按鈕實現多選一,設定同一個name值
<input type="radio" name="sex">
預設選中checked="checked"
4.多選框 複選框checkbox
<input type="checkbox">
預設選中checked="checked"
check檢票 box盒子
5.上傳檔案 file
<input type="file" >
6.下拉框select
<select>
<option>北京市</option>
<option>河北省</option>
<option>吉林省</option>
</select>
selected下拉框預設選中
option選項
7.多行文字textarea
<textarea></textarea>


表單屬性
1.提示資訊placeholder
2.值 value
3.必填項required="required"
4.最大字元限制maxlength="4"
5.禁用disabled="disabled"
6.只讀readonly="readonly"