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

打開APP
userphoto
未登錄

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

開通VIP
JQuery 對(duì) Select option 的操作
<script language="javascript">
        $(document).ready(function() {
        //綁定下拉框change事件,當(dāng)下來框改變時(shí)調(diào)用 SelectChange()方法
        $("#selectID").change(function() { SelectChange(); }); 
        })
        function SelectChange() {
        //獲取下拉框選中項(xiàng)的text屬性值
        var selectText = $("#selectID").find("option:selected").text();
        alert(selectText);
        //獲取下拉框選中項(xiàng)的value屬性值
        var selectValue = $("#selectID").val();
        alert(selectValue);
        //獲取下拉框選中項(xiàng)的index屬性值
        var selectIndex = $("#selectID").get(0).selectedIndex;
        alert(selectIndex);
        ////獲取下拉框最大的index屬性值
        var selectMaxIndex = $("#selectID option:last").attr("index");
        alert(selectMaxIndex);
    }

    function aa() {
        //設(shè)置下拉框index屬性為5的選項(xiàng) 選中
        $("#selectID").get(0).selectedIndex = 5;  
    }
    function bb() {
        //設(shè)置下拉框value屬性為4的選項(xiàng) 選中
        $("#selectID").val(4);
    }
    function cc() {
        //設(shè)置下拉框text屬性為5的選項(xiàng) 選中
         $("#selectID option[text=5]").attr("selected""selected");
         $("#yyt option:contains('5')").attr("selected"true);
    }
    function dd() {
        //在下拉框最后添加一個(gè)選項(xiàng)
        $("#selectID").append("<option value='7'>7</option>");
    }
    function ee() {
        //在下拉框最前添加一個(gè)選項(xiàng)
        $("#selectID").prepend("<option value='0'>0</option>")
    }
    function ff() {
        //移除下拉框最后一個(gè)選項(xiàng)
        $("#selectID option:last").remove();
    }

    function gg() {
        //移除下拉框 index屬性為1的選項(xiàng)
        $("#selectID option[index=1]").remove();
    }

    function hh() {
        //移除下拉框 value屬性為4的選項(xiàng)
        $("#selectID option[value=4]").remove();
    }
    function ii() {
        //移除下拉框 text屬性為5的選項(xiàng)
        $("#selectID option[text=5]").remove();
    }    
    </script>
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
jquery chosen插件使用及select常用方法
jquery獲得option的值和對(duì)option進(jìn)行操作
Jquery和javascript常用技巧
jQuery-對(duì)Select的操作集合[終結(jié)篇] - 博客文庫 - 博客園
jQuery UI Widget(1.8.1)工作原理
DOM編程藝術(shù)(表單操作)
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服