js实现动态改变radio状态的方法

h5的radio是自带选中状态改变的,但是如果自带的状态无法满足自己的需求时,就需要自己去实现。

代码如下:

h5部分代码

<p> <label> <input type="radio" value="1"/> 最新资料</label> <label> <input type="radio" value="0"/> 我的资料</label> <label> <input type="radio" value="0"/> 分类浏览</label> <label> <input type="radio" value="0"/> 浏览历史</label> </p>

CSS代码

<style> input[type="radio"] { /*取消自带按钮*/ color:gray; display: none; } .group>label:hover{ /*鼠标移到控件上做的改变*/ background-color: cornflowerblue; } .group>label{ /*未选中状态*/ float: left; color: #4A4A4A; font-size: 16px; padding: 10px 11px; } .group>label.active{ /*选中状态*/ color: #316CEB; font-size: 16px; border-top: 2px solid #316CEB; padding: 10px 11px; } </style>

JS方法代码

<script type = "text/javascript"> function change() { var radio = document.getElementsByName("parent_radio"); /*用ByName是为了取到所有的radio*/ var radioLength = radio.length; for(var i = 0;i < radioLength;i++) { if(radio[i].checked) { radio[i].parentNode.setAttribute('class', 'active'); }else { radio[i].parentNode.setAttribute('class', ''); } } } </script>

效果如下

这里实现的是顶部boder的动态显示隐藏并且这里radio左侧默认的圆形按钮设为了隐藏。如果想要按钮不隐藏,需要作如下修改

<p> <label><img src="https://www.jb51.net/images/delate_choose.png"> <input type="radio" value="1"/> 最新资料</label> <label> <img src="https://www.jb51.net/images/delate_no_choose.png"> <input type="radio" value="0"/> 我的资料</label> <label> <img src="https://www.jb51.net/images/delate_no_choose.png"> <input type="radio" value="0"/> 分类浏览</label> <label> <img src="https://www.jb51.net/images/delate_no_choose.png"> <input type="radio" value="0"/> 浏览历史</label> </p>

即在每一个raido类型的input前面加一个img(注意选中和未选中的区别),JS的change方法做以下修改

var radio = document.getElementsByName("parent_radio"); var img = document.getElementsByName("image"); /*用ByName是为了取到所有的radio*/ var radioLength = radio.length; for(var i = 0;i < radioLength;i++) { if(radio[i].checked) { img[i].src = "https://www.jb51.net/images/delate_choose.png"; radio[i].parentNode.setAttribute('class', 'active'); }else { img[i].src = "https://www.jb51.net/images/delate_no_choose.png"; radio[i].parentNode.setAttribute('class', ''); } }

img的length肯定和radio的length一样,所以可以只取一个length。

效果如下:

由于自己刚学的h5,很多东西不熟练,不敢说自己的方法就是正确方法,只是为了记录学习过程,所以把学到的一些东西写在这里,望大家不吝赐教。

这篇js实现动态改变radio状态的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/psfjz.html