JQuery if checkbox is checked Bootstrap switch

To show the value of the checkbox by JQuery


JQuery if checkbox is checked Bootstrap switch

1. กำหนดค่า

$('#txtBox').bootstrapSwitch('state', true  );
2. เวลาตอนทำการคลิกเพื่อให้ switch on/off
$('#txtBox').on('switchChange.bootstrapSwitch', function (event, state) {
     console.log(state);
});

3. แสดงค่าใน CheckBox
console.log('check txtBox is : ' + $('#txtBox').is(':checked') + ' '+ $('#txtBox').prop('checked'));
หมายเหตุ สำหรับ ตัวอย่างการใช้งาน bootstrap-switch ตามลิงด้านล่างเลยครับ https://github.com/Bttstrp/bootstrap-switch

แสดงความคิดเห็น

ใหม่กว่า เก่ากว่า