function clearForm(form) {
// 反復form
のすべての入力に対して //
に渡された要素 $(':input', form).each(function() {
var type = this.type;
var tag = this.tagName.toLowerCase(); // 大文字と小文字を正規化します
// テキスト入力、
// パスワード入力、テキストエリア
の値をリセットしても問題ありません if (type == ' text' || type == 'password' || tag == 'textarea')
this.value = "";
// チェックボックスとラジオはチェックされた状態をクリアする必要があります
// '値' を変更する必要はありません
else if (type == 'checkbox' || type == 'radio')
this.checked = false;
// 要素を選択する必要があります'selectedIndex' プロパティを -1 に設定します
// (これは単一および複数の選択要素の両方で機能します)
else if (tag == 'select')
this.selectedIndex = -1;
});
};