复选框 下拉框 选中状态

Posted zc_boy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复选框 下拉框 选中状态相关的知识,希望对你有一定的参考价值。

//复选框
if ($(this).is(‘:checked‘)==true){
console.log(111)
}
if ($(this).is(‘:checked‘)==false){
console.log(222)
}

//下拉框
//获取select 选中的 text :
    $("#").find("option:selected").text();

//获取select选中的 value:
    $("#").val();

//获取select选中的索引:
    $("#").get(0).selectedindex;

以上是关于复选框 下拉框 选中状态的主要内容,如果未能解决你的问题,请参考以下文章

js实现点击选中,第二次点击取消选中状态

android RadioButton怎么设置默认选中

android RadioButton怎么设置默认选中

下拉框和单选框复选框的选中的值

jquery 操作表单的问题

后台返回数据回显,使用js控制默认选中复选框和下拉框