防止Firefox记住用Meta标签刷新的input值
当我用Firefox刷新页面时,checkbox,input字段等的值将被保留。
有没有办法让Firefox不让他们,使用没有JavaScript的元标记?
对于input
标签,可以设置属性autocomplete
:
<input type="text" autocomplete="off" />
您也可以使用自动填充function。
// 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); }