当前位置: 代码迷 >> Web前端 >> JQuery 操作上拉框、单选框、复选框
  详细解决方案

JQuery 操作上拉框、单选框、复选框

热度:98   发布时间:2012-10-30 16:13:36.0
JQuery 操作下拉框、单选框、复选框

//遍历option和添加、移除option
function changeShipMethod(shipping){
? var len = $("select[@name=ISHIPTYPE] option").length
? if(shipping.value != "CA"){
??? $("select[@name=ISHIPTYPE] option").each(function(){
????? if($(this).val() == 111){
??????? $(this).remove();
????? }
???? });
??}else{
??? $("<option value='111'>UPS Ground</option>").appendTo($("select[@name=ISHIPTYPE]"));
? }
}
记性不好的可以收藏下:
1,下拉框:

//得到下拉菜单的选中项的文本(注意中间有空格)

var cc1?? = $(".formc select[@name='country'] option[@selected]").text();

//得到下拉菜单的选中项的
var cc2 = $('.formc select[@name="country"]').val();

//得到下拉菜单的选中项的ID属性值

var cc3 = $('.formc select[@name="country"]').attr("id");

//清空下拉框//$("#select").html('');

$("#select").empty();

//添加下拉框的option

$("<option value='1'>1111</option>").appendTo("#select")

2,单选框:

//得到单选框的选中项的值(注意中间没有空格)
$("input[@type=radio][@checked]").val();

$('input[name="name"]:checked').val();

//设置单选框value=2的为选中状态.(注意中间没有空格)

$("input[@type=radio][@value=2]").attr("checked",'checked');

3,复选框:

//得到复选框的选中的第一项的值
$("input[@type=checkbox][@checked]").val();

//由于复选框一般选中的是多个,所以可以循环输出

$("input[@type=checkbox][@checked]").each(function(){?
?? alert($(this).val());
});

$("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined){} //判断是否已经打勾

  相关解决方案