我无法从chechbox获得价值,因为复选框使用css bootstrap。我怎么能得到那个?

时间:2017-10-18 05:37:37

标签: javascript jquery twitter-bootstrap bootstrap-4

如何从带有jquery的复选框中获取值?

My Code in here :

1 个答案:

答案 0 :(得分:1)

点击事件和更改事件都应该在您的代码中运行:     假设一个类似于你的标记:

<input type="checkbox" class="minimal" id="cek">
<input type="checkbox" class="minimal" id="cek">

and two click handlers similar to yours:
$("#cek").click(function() {
    alert("AAA");
})

$("#cek").change(function() {
    alert("BBB");
})

请参阅以下JS小提琴作为示例: https://jsfiddle.net/jtjj9zy3/6/

您可以仔细检查浏览器控制台是否存在Javascript错误吗?