function clearForm(form) { 表單
的所有輸入// 傳入
的元素$(':input', form).each(function() {
var type = this.type;
var tag = this. tagName.toLowerCase(); // 標準化大小寫
// 可以重設文字輸入的值attr,
// 密碼輸入與文字區域
if (type == ' text' || type = = 'password' || tag == 'textarea')
this.value = "";
// 複選框與單選按鈕需要清除其選取狀態
// 複選框與單選按鈕需要清除其選取狀態
其「值」
else if (type == 'checkbox' || type == 'radio')
this.checked = false;
this.checked = false;
this.checked = false;
設定為-1
// (這適用於單一和多個選擇元素)
else if (tag == 'select')
this.selectedIndex = -1;};