html – 在Firefox中页面刷新时未选中单选按钮

html – 在Firefox中页面刷新时未选中单选按钮,第1张

概述<div id="btns"> <input id="r01" type="radio" name="music" checked> <input id="r02" type="radio" name="music"> <input id="r03" type="radio" name="music"> <input id="r04" type="radio" name="
<div ID="btns">   <input ID="r01" type="radio" name="music" checked>   <input ID="r02" type="radio" name="music">   <input ID="r03" type="radio" name="music">   <input ID="r04" type="radio" name="music">   <input ID="r05" type="radio" name="music"></div>

在页面刷新时未检查firefox 24 – r1.在Shift-F5 – 工作.
Chrome – 有效.

解决方法 如果它在shift-F5上工作就意味着,firefox会保存用户输入,因为表单尚未发送.
Firefox keeps form data on reload

Just found a solution!

Just add autocomplete=”off” to all you input and you will solve the problem.

jquery to solve this on all inputs and textareas

$('input,textarea').attr('autocomplete','off');
总结

以上是内存溢出为你收集整理的html – 在Firefox中页面刷新时未选中单选按钮全部内容,希望文章能够帮你解决html – 在Firefox中页面刷新时未选中单选按钮所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1079219.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存