作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前有一个复选框,一旦选中,就会出现一些 div 元素。我想在单击复选框后隐藏该复选框,以便只显示 div 元素。
这是我的 HTML:
<div>
<label>Check the box to agree to our terms. After agreeing, you will be able to view our products and checkout.<input name="colorCheckbox" type="checkbox" value="red" /></label>
</div>
<div class="red box">content shows up here</div>
这是我的 JavaScript:
<script type="text/javascript">
$(document).ready(function(){
$('input[type="checkbox"]').click(function(){
if($(this).attr("value")=="red"){
$(".red").toggle();
}
});
});
</script>
非常感谢任何帮助。
最佳答案
可以引用this
隐藏复选框
$(document).ready(function () {
$('input[type="checkbox"][value="red"]').click(function () {
$(".red").show();
$(this).hide()
});
});
演示:Fiddle
另请注意,更改处理程序仅添加到值为红色的复选框,而不是针对所有复选框
关于javascript - 单击后隐藏复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29159741/
我是一名优秀的程序员,十分优秀!