做项目的时候经常会遇到一些jq常用的小特效,例如单选按钮点击显示、隐藏功能
html代码:
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
</head>
<body>
<input type="radio" value="true" class="need" name="need" checked="checked">需要
<input type="radio" value="false" class="need" name="need">不需要
<br>
<div class="invoice">
发票抬头:
<input type="text" placeholder="个人发票或者公司发票">
</div>
</body>
</html>
js代码:
<script>
$(function(){
var inp = $('.invoice');
$('.need').each(function(){
if($(this).val() == 'true' && $(this).attr('checked') == 'checked') {
inp.show();
}
}).on('click', function(){
if($(this).val() == 'true') {
inp.show();
}else{
inp.hide();
}
});
});
</script>