我在线搜索过,无法解决问题。
我正在使用物化css芯片,我想要的是每当选中复选框时,最后一个芯片的颜色应该变为绿色而其他芯片的颜色变为红色,当未选中时,它们都会变为红色。
我不知道这是否可行,因为我已经设定了条件
$('.chips-placeholder').chips({
placeholder: 'Enter options',
secondaryPlaceholder: '+Options',
limit:6
});
$(document).ready(function() {
$('#anscheck').change(function() {
if($("#anscheck").is(":checked")){
}
});
});
HTML
<div class="row opt">
<div class="col m4 s10 offset-m3 chips-placeholder">
<input type="text" name="opts[]">
</div>
<div class="col m4 s10 switch correctans">
<label>
Off
<input type="checkbox" id='anscheck'>
<span class="lever"></span>
On
</label>
</div>
</div>
答案 0 :(得分:0)
修改:设置onChipAdd
和onChipDelete
事件以在添加或删除芯片时更改颜色。
我会在没有jQuery方法的情况下初始化芯片组件。
1)获取所有筹码。
$(chipInstance[0].$chips)
2)遍历所有芯片并检查芯片的(index + 1)是否等于所有芯片的数量。 (原因索引从零开始。)
allChips.each(function(index, element){
let Color = (index+1) == allChips.length ? 'green' : 'red';
$(element).addClass(Color)
})
3)添加类以更改字体颜色。
这是一个演示:
let target = $('.chips-placeholder');
let options = {
placeholder: 'Enter options',
secondaryPlaceholder: '+Options',
limit: 6,
onChipAdd: function(){
CheckChipsColor();
},
onChipDelete: function(){
CheckChipsColor();
}
}
let chipInstance = M.Chips.init(target, options)
$('#anscheck').change(function() {
CheckChipsColor();
});
function CheckChipsColor(){
let allChips = $(chipInstance[0].$chips);
allChips.removeClass('red green');
if ($("#anscheck").is(":checked")) {
allChips.each(function(index, element){
let Color = (index+1) == allChips.length ? 'green' : 'red';
$(element).addClass(Color)
})
}
}
.red{
color: red;
}
.green{
color: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/css/materialize.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/js/materialize.js"></script>
<div class="row opt">
<div class="col m4 s10 offset-m3 chips-placeholder">
<input type="text" name="opts[]">
</div>
<div class="col m4 s10 switch correctans">
<label>
Off
<input type="checkbox" id='anscheck'>
<span class="lever"></span>
On
</label>
</div>
</div>