九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
js和jq判斷select是否選中、獲取select選中的值

js和jq獲取select選中的值

JS部分

var   mySelect = document.getElementById(”testSelect”);//定位id(獲取select)
var   index =mySelect.selectedIndex;// 選中索引(選取select中option選中的第幾個(gè))
var   text =mySelect.options[index].text; // 選中文本
var   value =mySelect.options[index].value; // 選中值
mySelect.options[index].selected // 判斷select中的某個(gè)option是否選中   true為選中   false 為未選中
  1. if(mySelect.options[1].selected == true){  
  2.    console.log(1)  
  3. }  


JQ部分

1.判斷option是否被選中

$("#id").is(":checked")//為false時(shí)是未被選中的,為true時(shí)是被選中

$("#id").attr('checked')==undefined//為false時(shí)是未被選中的,為true時(shí)是被選中

2.獲取select選中的值

$("#mySelect option:selected").text()

$("#mySelect").find('option:selected').text()

$("#mySelect").val();

3.獲取select選中的索引

$("#mySelect").get(0).selectedindex

4.添加option

$("#mySelect").append("<option value="+value+">"+text+"<option>");

5.刪除option

$("#myOption").remove()

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
HTML中的<select>標(biāo)簽如何設(shè)置默認(rèn)選中的選項(xiàng)
js觸發(fā)select onchange事件的小技巧
利用js給datalist或select動(dòng)態(tài)添加option選項(xiàng)
html js 清除select里的值,js控制select增刪改,選中,清空, 判斷控件...
省市區(qū)三級(jí)聯(lián)動(dòng)[JSON+Jquery]
Jquery主要控件的取值、賦值,包括textbox,button,lable,radio,checkbox,selected
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服