web-dev-qa-db-ja.com

Firefoxがメタタグで更新時に入力値を記憶しないようにする

Firefoxでページを更新すると、チェックボックス、入力フィールドなどの値が保持されます。

JavaScriptなしでメタタグを使用して、Firefoxがそれらを保持しないようにする方法はありますか?

67
Nir

inputタグの場合、設定できる属性autocompleteがあります。

<input type="text" autocomplete="off" />

formにもオートコンプリートを使用できます。

149
True Soft
// IE fix - do this at the end of the page
var oninit_async_reset = setInterval(function() { resetFormIEFix(); }, 500);
function resetFormIEFix() {
    $('#inputid').val('');
    if (typeof oninit_async_reset != 'undefined')
        clearInterval(oninit_async_reset);
}
1