复选框 下拉框 选中状态
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;
以上是关于复选框 下拉框 选中状态的主要内容,如果未能解决你的问题,请参考以下文章