主頁(yè) > 知識(shí)庫(kù) > html中radio值的獲取、賦值、注冊(cè)事件示例詳解

html中radio值的獲取、賦值、注冊(cè)事件示例詳解

熱門標(biāo)簽:外呼智能系統(tǒng)報(bào)價(jià) 個(gè)貸電銷機(jī)器人 華為收費(fèi)站地圖標(biāo)注 經(jīng)綸電銷機(jī)器人 巫山縣地圖標(biāo)注app 騰訊植物園地圖標(biāo)注 浦東新區(qū)百度地圖標(biāo)注圖片 電話機(jī)器人宣傳片 鄒城智能外呼系統(tǒng)
1,radio分組

只要name一樣,就是一組的,即一組中只能選擇一個(gè),如下:

復(fù)制代碼
代碼如下:

<span>group1:</span>
<input type="radio" id="radio1" checked="checked" name="group1" />radio1
<input type="radio" id="radio2" name="group1" />radio2
<input type="radio" id="radio3" name="group1" />radio3

<span>group2:</span>
<input type="radio" id="radio4" checked="checked" name="group2" />radio4
<input type="radio" id="radio5" name="group2" />radio5
<input type="radio" id="radio6" name="group2" />radio6

效果如下:
 

2,獲取選中的radio節(jié)點(diǎn)

使用jquery可以很方便做到,先選擇group,然后過濾出checked的,如下:


復(fù)制代碼
代碼如下:

var group1 = $("[name='group1']").filter(":checked");
console.log(group1.attr("id"));

3,選中一個(gè)radio節(jié)點(diǎn)

使用jquery設(shè)置checked屬性:

復(fù)制代碼
代碼如下:

$("#radio2").attr("checked", "checked");

4,去選中一個(gè)radio節(jié)點(diǎn)

移除checked屬性:

復(fù)制代碼
代碼如下:

$("#radio1").removeAttr("checked");

這樣做的結(jié)果可能造成一組radio中沒有一個(gè)處于選中狀態(tài)。

5,注冊(cè)選中去選中事件

還是使用jquery的on函數(shù)來(lái)注冊(cè)change事件,如下:

復(fù)制代碼
代碼如下:

$("[name='group1']").on("change",
function (e) {
console.log($(e.target).val());
}
);

這樣只要group1中任何一個(gè)有選中的,就會(huì)觸發(fā)函數(shù)。

標(biāo)簽:滁州 南平 三沙 唐山 楊凌 那曲 日喀則 廣西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html中radio值的獲取、賦值、注冊(cè)事件示例詳解》,本文關(guān)鍵詞  html,中,radio,值,的,獲取,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html中radio值的獲取、賦值、注冊(cè)事件示例詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于html中radio值的獲取、賦值、注冊(cè)事件示例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章