去除浏览器对表单值的记忆
?
<INPUT NAME="name" SIZE=40 AUTOCOMPLETE=OFF>
加autocomplete="off" 即可屏蔽浏览器表单默认的记忆功能
<input type="radio" name="testRadio" checked="checked" autocomplete="off"/> test1 <input type="radio" name="testRadio" autocomplete="off"/> test2?