如何获取值或设置值在Bootstrap中是否切换按钮

时间:2015-06-18 08:46:19

标签: jquery twitter-bootstrap

在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');
 });

1 个答案:

答案 0 :(得分:0)

使用Javascript就是你要做的。

$('#id-Kitchen').on('click', function () {
    alert($(this).prop('checked'));
});