国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網(wǎng)站 > WEB開發(fā) > 正文

jquery實(shí)現(xiàn)點(diǎn)擊radio,當(dāng)選中‘其它’時(shí),顯示后面輸入框;否則隱藏

2024-04-27 15:00:52
字體:
供稿:網(wǎng)友

有時(shí)候會遇到這么一個(gè)很簡單的功能:

jquery實(shí)現(xiàn)點(diǎn)擊radio,當(dāng)選中‘其它’時(shí),顯示后面輸入框;否則隱藏

html代碼:

<div> <input type="radio" name="rd" class="same" value='選項(xiàng)二' >選項(xiàng)一 <input type="radio" name="rd" class="same" value='選項(xiàng)二'>選項(xiàng)二 <input type="radio" name="rd" class="same others" value='其它'>其它 <input type="text" name="txt" class="txt" value=""/> </div>

jquery代碼:

$(function(){    $(".same").click(function(){       $(this).siblings().attr("checked",false);       $(this).attr("checked",true);          if($(this).attr("class").indexOf('others')>=0){              $(this).siblings('.txt').show();        }        else{            $(".others").siblings('.txt').hide();        }    });})

注釋: if語句也可以使用if($(this).hasClass("others"))進(jìn)行判斷。

如果你有更好的解決辦法請留言交流,謝謝!

 看了網(wǎng)友的回復(fù),CSS其實(shí)是最簡單的:

.others ~ input[type='text'] {    display:none;}.others:checked ~ input[type='text'] {    display:inline;}

注:但是但是IE9以下低版本不支持。


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 安远县| 青岛市| 永胜县| 丹寨县| 大埔县| 湘乡市| 连州市| 湟中县| 东辽县| 来宾市| 浦东新区| 霍州市| 玉屏| 西藏| 孝感市| 朝阳区| 广西| 社会| 济南市| 德州市| 青海省| 左贡县| 鄱阳县| 柳江县| 扶沟县| 桃源县| 宁国市| 凭祥市| 弥渡县| 永昌县| 图们市| 邹平县| 当阳市| 重庆市| 奉新县| 肥东县| 综艺| 南丹县| 闵行区| 安达市| 石渠县|