jQuery獲取各種標籤的文字和value值

2022-02-07 14:34:40 字數 1237 閱讀 9599

volvo

saab

opel

audi

紅色藍色

綠色1.獲取選中值,三種方法都可以:

$('input:radio:checked').val();

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

$("input[name='colors']: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.刪除第幾個radio

$("input:radio").eq(索引值).remove();索引值=0,1,2....

如刪除第3個radio:$("input:radio").eq(2).remove();

6.遍歷radio

$('input:radio').each(function(index,domele));

span是塊狀元素,span不存在value值,測試內容

要是想取span的內容,$("span").text();

jquery給span賦值

span是最簡單的容器,可以當作乙個形式標籤,其取值賦值方法有別於一般的頁面元素。

//賦值

$("#spanid").html(value)

//取值

$("#spanid").text()

在js中

假設我有乙個

現在我要單擊乙個按鈕後讓span中顯示「hello,world!」。

Jquery獲取select標籤的值 文字方式

首先看html 我勒個去!坑爹啊!悲催啊!冬瓜!我去!先來說說這個標籤吧!multiple這個屬性是可以多選!它的寫法就是 multiple multiple size 3 就是這個select標籤頂多可有3個option disabled disabled 這個屬性就是禁止下拉框下拉!就是不能用了...

jquery獲取各種高度

alert window height 瀏覽器時下視窗可視區域高度 alert document height 瀏覽器時下視窗文件的高度 alert document.body height 瀏覽器時下視窗文件body的高度 alert document.body outerheight true ...

Jquery獲取父標籤

1 在jquery中提供三個獲取父標籤的方法 id parent jquery實現原理,獲取element的parentnode,如果parentnode為document,則返回null parent function elem id parents 返回父標籤陣列 jquery實現原理,呼叫di...