码迷,mamicode.com
首页 > 其他好文 > 详细

laber 个性radio

时间:2015-09-22 18:16:46      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

 

 

<p id="test11">
<label class="btna" > <input type="radio" style="display: none " class="ghs" name="ghs" value="外星人1"/>外星人1</label>
<label class="btna" > <input type="radio" style="display: none " class="ghs" name="ghs" value="外星人2"/>外星人2</label>
<label class="btna" ><input type="radio" style="display: none " checked class="ghs" name="ghs" value="外星人3"/>外星人3</label>
</p>
<p>
<h3 id="h3te"></h3>
</p>

 

<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<style>
.btna{border: 1px solid #c9ccd0;border-radius: 3px;width: 50px;margin-left:3px;text-align: center;color: #9c9c9c;cursor: pointer;background-color: white}
</style>
<script>
$(‘#test11‘).on(‘click‘,function(){
$(‘#test11‘).children().css(‘border‘,‘‘);
var val = $(‘#test11 :checked‘).val();
$(‘#test11 :checked‘).parent().css(‘border‘,‘ 2px solid #FF6600‘);
$(‘#h3te‘).html(val);
});
</script>

 

laber 个性radio

标签:

原文地址:http://www.cnblogs.com/wqy61/p/4829287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!