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

点击免费没有变化,点击收费出现输入框

时间:2015-12-23 17:49:07      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

<li>
<label class="feiyonglabel">活动费用</label>
<div class="textbox textbox2">
<label><input type="radio" name="hdprice" data-type="1" class="hdprice"> 免费</label>
<label id="charge" data="on"><input type="radio" name="hdprice" class="hdprice" value="1" data-type="2"> 收费</label>
</div>
<div class="feiyong"><input class="" type="text"> 元/每人</div>
</li>
<script>
$(‘.hdprice‘).click(function(){
var attr = $(this).attr(‘checked‘);
if($(this).attr(‘data-type‘)==‘2‘){
if(attr==‘checked‘){
$(‘.feiyong‘).css(‘visibility‘,‘visible‘);
}
} else{
$(‘.feiyong‘).css(‘visibility‘,‘hidden‘);
}
});
</script>

点击免费没有变化,点击收费出现输入框

标签:

原文地址:http://www.cnblogs.com/mm2015/p/5070644.html

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