特定の入力をスキップIは、入力フォームをクリアするため、以下の機能を持っている:jQueryのセレクタ -
function clearForm(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;
else if (tag == 'select')
this.selectedIndex = -1;
});
};
は、私は「隠された」であり、入力をクリアするからそれを停止することができます方法はありますか?
ありがとうございます。
パーフェクト。ありがとうございました – martok