Firefoxでページを更新すると、チェックボックス、入力フィールドなどの値が保持されます。
JavaScriptなしでメタタグを使用して、Firefoxがそれらを保持しないようにする方法はありますか?
input
タグの場合、設定できる属性autocomplete
があります。
<input type="text" autocomplete="off" />
form
にもオートコンプリートを使用できます。
// 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);
}