zoukankan      html  css  js  c++  java
  • jquery操作select(取值,设置选中)

    jquery操作select(增加,删除,清空)  

    $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
     
    var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的
     
    var checkValue=$("#select_id").val(); //获取Select选择的Value
     
    var checkIndex=$("#select_id ").get(0).selectedIndex; //获取Select选择的索引值
     
    var maxIndex=$("#select_id option:last").attr("index"); //获取Select最大的索引值
     

    jQuery添加/删除Select的Option项:

    $("#select_id").append("<option value='Value'>Text</option>"); //为Select追加一个Option(下拉项)
    
    $("#select_id").prepend("<option value='0'>请选择</option>"); //为Select插入一个Option(第一个位置)
    
    $("#select_id option:last").remove(); //删除Select中索引值最大Option(最后一个)
    
    $("#select_id option[index='0']").remove(); //删除Select中索引值为0的Option(第一个)
    
    $("#select_id option[value='3']").remove(); //删除Select中Value='3'的Optiona
    
    $("#select_id option[text='4']").remove(); //删除Select中Text='4'的Optiona
    
    内容清空:$("#charCity").empty();

     jQuery获取Select选择的TextValue: 

    $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
     
    var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的text
     
    var checkValue=$("#select_id").val(); //获取Select选择的Value
     
    var checkIndex=$("#select_id ").get(0).selectedIndex; //获取Select选择的索引值
     
    var maxIndex=$("#select_id option:last").attr("index"); //获取Select最大的索引值

    通过表单-和name 取值

    var frmCustomer = $("#frmCustomer");//表单
    $(frmCustomer).find("select[name='is_buy'] option:selected").val()

    转:https://www.cnblogs.com/hailexuexi/p/6708110.html

  • 相关阅读:
    TreeView 读取 xml 显示节点
    网上流传的数据操作类
    文件上传, 打开, 删除操作
    Reflector8.5 .net反编译工具 破解教程
    asp.net c# 打开新页面或页面跳转
    UGUI 要点总结
    EventSystem
    拖拽事件
    Unity Transform
    鼠标跟随(坐标转换)
  • 原文地址:https://www.cnblogs.com/fps2tao/p/9435240.html
Copyright © 2011-2022 走看看