在Boot Strap样式中是否Switch按钮,如何设置值。如果是表示真,如果否表示错误。
<label class="pull-right inline">
<small class="muted smaller-90"></small>
<input id="id-Kitchen" checked="" type="checkbox" class="ace ace-switch ace-switch-5" />
<span class="lbl middle"></span>
</label>
$('#id-Kitchen').attr('checked', 'checked').on('click', function () {
alert('asd');
$('#default-buttons .btn').toggleClass('no-border');
});
答案 0 :(得分:0)
使用Javascript就是你要做的。
$('#id-Kitchen').on('click', function () {
alert($(this).prop('checked'));
});