radio
1.獲取選中值,三種方法都可以:
$('input:radio:checked').val();
$("input[type='radio']:checked").val();
$("input[name='rd']:checked").val();
2.設定第乙個radio為選中值:
$('input:radio:first').attr('checked', 'checked');
或者$('input:radio:first').attr('checked', 'true');
注:attr("checked",'checked')= attr("checked", 'true')= attr("checked", true)
3.設定最後乙個radio為選中值:
$('input:radio:last').attr('checked', 'checked');
或者$('input:radio:last').attr('checked', 'true');
4.根據索引值設定任意乙個radio為選中值:
$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2....
或者$('input:radio').slice(1,2).attr('checked', 'true');
5.根據value值設定radio為選中值
$("input:radio[value='rd2']").attr('checked','true');
或者$("input[value='rd2']").attr('checked','true');
6.刪除value值為rd2的radio
$("input:radio[value='rd2']").remove();
7.刪除第幾個radio
$("input:radio").eq(索引值).remove();索引值=0,1,2....
如刪除第3個radio:$("input:radio").eq(2).remove();
8.遍歷radio
$('input:radio').each(function(index,domele){
//寫入**
1. 獲取選中項:
獲取選中項的value值:
$('select#sel option:selected').val();
或者$('select#sel').find('option:selected').val();
獲取選中項的text值:
$('select#seloption:selected').text();
或者$('select#sel').find('option:selected').text();
2. 獲取當前選中項的索引值:
$('select#sel').get(0).selectedindex;
3. 獲取當前option的最大索引值:
$('select#sel option:last').attr("index")
4. 獲取dropdownlist的長度:
$('select#sel')[0].options.length;
或者$('select#sel').get(0).options.length;
5. 設定第乙個option為選中值:
$('select#sel option:first').attr('selected','true')
或者$('select#sel')[0].selectedindex = 0;
6. 設定最後乙個option為選中值:
jq 獲取radio的值
使用jquery獲取radio的值,最重要的是掌握jquery選擇器的使用,在乙個表單中我們通常是要獲取被選中的那個radio項的值,所以要加checked來篩選,比如有以下的一些radio項 1.jquery獲取radio的值 2.jquery獲取checkbox的值 3.jquery獲取sele...
jquery獲取radio的值
使用jquery獲取radio的值,最重要的是掌握jquery選擇器的使用,在乙個表單中我們通常是要獲取被選中的那個radio項的值,所以要加checked來篩選,比如有以下的一些radio項 1.jquery獲取radio的值 2.jquery獲取checkbox的值 3.jquery獲取sele...
jquery獲取radio的值
1 name相同的為一組,下面共有兩組regression1和regression2,每組裡只能選擇一種情況 div class form group style display inline label 是否基線回歸壓測 label label input type radio name regr...