如何获取切换复选框的值

时间:2016-04-14 15:07:23

标签: javascript toggle

我想获得切换复选框的值。 我的意思是,我希望得到让我说“1'为准备和' 0'没准备好。 我怎样才能做到这一点? 这是我的代码:

 <link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">

<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<input type="checkbox" checked data-toggle="toggle" data-on="Ready" data-off="Not Ready" data-onstyle="success" data-offstyle="danger">

1 个答案:

答案 0 :(得分:1)

首先,您将ID设置为复选框。然后听听变化。

<input id="my_checkbox" type="checkbox" onclick="getValue()"...

function getValue() {
   var isChecked = document.getElementById('my_checkbox').checked;
   var the_value = isChecked ? 1 : 0;
   //do something with that value
}

请参阅this JsFiddle