如何在javascript中获取复选框的标签值

前端之家收集整理的这篇文章主要介绍了如何在javascript中获取复选框的标签值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有两个复选框,具体取决于用户点击的复选框,我需要调用其他函数,但是,我无法获取复选框标签值.

这是我的代码

function getLabel(id)
{
  return $("#"+id).next().text();
}
function BillStatus(){
    console.log("its here");
    var label=getLabel('checkBoxid1'); 
    console.log(label);
    if(label=="No") {
        //some function to call here
    }else{
       //other function to call here
    }
}

猜你在找的HTML相关文章