有限制地向不同的输入添加/删除复选标记 [英] Adding/removing checkmark to different inputs with a limit

查看:75
本文介绍了有限制地向不同的输入添加/删除复选标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有三个选项,如果您单击某个选项,则会在其上方显示一个选中标记,表示该选项处于选中状态.我的上限是1套.到目前为止,需要再次单击图像/当前选中标记输入以将其删除,而不是简单地单击另一个选项然后将其删除.

I have three options and if you click on an option a checkmark shows over it, representing the option as selected. I have a limit of 1 set. As of now, the image/current checkmark input needs to be clicked again to remove it, rather than simply being able to click on another option and removing it.

我试图设置一个片段来复制我实际拥有的片段,但是由于某些原因,未显示选中标记.无论如何,我试图结合从另一篇文章中看到的解决方案:$('').not(this).prop('checked', false);.

I tried to setup a snippet that replicates what I actually have, but the checkmark isn't showing for some reason. Regardless, I am attempting to incorporate a solution I saw from another post with this: $('').not(this).prop('checked', false);.

我不确定如何将其添加到我的代码中以使其工作.我已经尝试过:

I am not sure how to add it to my code to get it to work though. I have tried:

$(this).parents('.product-wrap:first').find('.checkmark-img').fadeBoolToggle(this.checked).not(this).prop('checked', false);

$(this).parents('.product-wrap:first').find('.checkmark-img').not(this).prop('checked', false).fadeBoolToggle(this.checked);

有人知道单击另一个复选标记输入选项时如何使复选标记输入切换吗?

Does anyone know how I can get the checkmark inputs to switch when clicking another checkmark input option?

这是与之关联的代码块.

This is the block of code that it is associated with.

$('.calendar-check').on('change', function () {
        //    $('').not(this).prop('checked', false);
        if (!this.checked || $('.calendar-check:checked').length <= limitCal) {
            $(this).parents('.product-wrap:first').find('.checkmark-img').fadeBoolToggle(this.checked);

 //For checkmark
    jQuery.fn.fadeBoolToggle = function (bool) {
        return bool ? this.fadeIn(400) : this.fadeOut(400);
    }
$('.calendar-check').on('change', function () {
        //    $('input.example').not(this).prop('checked', false);
        if (!this.checked || $('.calendar-check:checked').length <= limitCal) {
            $(this).parents('.product-wrap:first').find('.checkmark-img').fadeBoolToggle(this.checked);
        }
});

.product-check, .calendar-check {
  display: none;
}
.total-center {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}
.product-wrap {
    width: 100%;
    position: relative;
    display: block;
}
.checkmark-img {
    display: none;
    width: 40%;
    height: auto;
    z-index: 1;
    cursor: pointer;
}
.package-check-toggle {
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
}
#calendar-box-wrap, #tp-package-wrap {
    margin: 50px 0;
}
.calendar-box, .tp-package {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    margin: 0 4%;
    position: relative;
}
.option-input {
    border: 1px solid #CDCDCD;
    padding: 10px;
    color: #303030;
    font-size: 1.2em;
}
/*- Calendar -*/
.calendar-selection-img {
    width: 70%;
    height: auto;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}
/*- Calendar Preview Section -*/
#pg-preview-input-section, #pg-preview-img-section {
    display: inline-block;
    vertical-align: top;
}
#pg-preview-input-section {
    width: 45%;
}
#pg-preview-img-section {
    width: 55%;
}
#calender-preview-choice {
    margin-top: 50px;
    font-weight: bold;
}
.pg-preview-img {
    width: 35%;
    height: auto;
    margin-left: 15%;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="calendar-box">
<div class="product-wrap">
    <label for="cal-2year" class="package-check-toggle">
        <h4 class="calendar-box-title">A</h4>
        <img src="http://cdnl.accucutcraft.com/media/catalog/product/cache/2/image/9df78eab33525d08d6e5fb8d27136e95/c/v/cv106.jpg"
            alt="A" class="calendar-selection-img">
        <img src="https://d30y9cdsu7xlg0.cloudfront.net/png/2783-200.png" class="checkmark-img total-center">
    </label>
    <input type="checkbox" class="calendar-check">
</div>
</div>
<div class="calendar-box">
<div class="product-wrap">
    <label for="cal-whiteboard" class="package-check-toggle">
        <h4 class="calendar-box-title">B</h4>
        <img src="http://cdnl.accucutcraft.com/media/catalog/product/cache/2/image/9df78eab33525d08d6e5fb8d27136e95/c/v/cv106.jpg"
            alt="B" class="calendar-selection-img">
        <img src="https://d30y9cdsu7xlg0.cloudfront.net/png/2783-200.png" class="checkmark-img total-center">
    </label>
    <input type="checkbox" class="calendar-check">
</div>
</div>
<div class="calendar-box">
<div class="product-wrap">
    <label for="cal-glance" class="package-check-toggle">
        <h4 class="calendar-box-title">C</h4>
        <img src="http://cdnl.accucutcraft.com/media/catalog/product/cache/2/image/9df78eab33525d08d6e5fb8d27136e95/c/v/cv106.jpg"
            alt="C" class="calendar-selection-img">
        <img src="https://d30y9cdsu7xlg0.cloudfront.net/png/2783-200.png" class="checkmark-img total-center">
    </label>
    <input type="checkbox" class="calendar-check">
</div>
</div>

推荐答案

如果您尝试仅选择一个复选框,则需要添加一个名称(如果您想使用单选,则需要使用jQuery作为复选框),在每个输入字段中都相同:

If you are trying to have only one checkbox selected you need to add a name (if you want to use radio this works else you need jQuery for checkbox ) that is the same in each input field:

<div>
   <input name="checkMark" type="checkbox" />
</div>
<div>
   <input name="checkMark" type="checkbox" />
</div>
<div>
   <input name="checkMark" type="checkbox" />
</div>

如果您使用此代码仅选中一个复选框,则删除此代码:

If you are using this code to have only one checkbox checked, then delete this code:

$('.calendar-check').on('change', function () {
    //    $('').not(this).prop('checked', false);
    if (!this.checked || $('.calendar-check:checked').length <= limitCal) {
        $(this).parents('.product-wrap:first').find('.checkmark-img').fadeBoolToggle(this.checked);
    }
});

并添加以下内容:

$('input.calendar-check').on('click', function(){
    $('input.calendar-check').not(this).attr('checked', false);
})

https://jsfiddle.net/e854ao30/2/

基本上,您是说单击的任何一个,其余的输入都会被检查为错误.

Basically you're saying whichever one you click, the rest of the inputs will be checked false.

这篇关于有限制地向不同的输入添加/删除复选标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆