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

  • 相关阅读:
    html基本标签练习
    实践1-qq邮箱主页
    html加强
    Date日期操作
    日期类的加减及java中所以日期类的操作算法大全
    讲解java异常
    关于Java并发编程的总结和思考
    删除map、list集合元素总结
    Jedis使用总结【pipeline】【分布式的id生成器】【分布式锁【watch】【multi】】【redis分布式】
    Java中的时间日期处理
  • 原文地址:https://www.cnblogs.com/fps2tao/p/9435240.html
Copyright © 2011-2022 走看看