下拉框:
//得到下拉式選單的選取項目的文字(注意中間有空格)
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").empty();$("#select").html('');
//新增下拉框的option
$("").appendTo("#select")
稍微解釋一下:
select[@name='country'] option[@selected]
表示具有name 屬性,且該屬性值為'country' 的select元素裡面的具有selected 屬性的option 元素。可以看出有@開頭的就表示後面跟的是屬性。
單選框:
//得到單選框的選取項目的值(注意中間沒有空格)
$("input[@type=radio][@checked]").val();
//設定單選框value=2的為選取狀態.(注意中間沒有空格)
$("input[@type=radio][@value=2]").attr("checked",'checked');
複選框:
//得到複選框的選取的第一項的值
$("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){}