一、文本框、單選按鈕、複選框、相關操作
或預設單選框預設:
$("input[name='sex']").each(function(){
if($(this).val()= =s){
$(this).attr("checked",true);
//this.checked=true;
}
});
語法解釋: $("#select_id").change(function(){//code...}); //為Select新增事件,當選擇其中一項時觸發 var checkText=$("#select_id" ).find("option:selected").text(); //取得Select選擇的Text
var checkValue=$("#select_id").val(); //取得Select選擇的Value var checkIndex=$("#select_id ").get(0).selectedIndex; //取得Select選擇的索引值
var maxIndex=$("#select_id option:last").attr("index"); //取得Select最大的索引值
語法解釋:
$("#select_id ").get(0).selectedIndex=1; //設定Select索引值為1的項目選取 $("#select_id ").val(4); //設定Select的Value值為4的項目選取
$("#select_id option[text='jQuery']" ).attr("selected", true); //設定Select的Text值為jQuery的項目選取
jQuery新增/刪除Select的Option項目:
語法解釋:
$("#select_id").append(""); //為Select追加一個Option(下拉項目)