来源:https://zhidao.baidu.com/question/692142321436883524.html

静态的写法:

用jq的attr()函数,如:

HTML:

<select>
<option name="aa" data-id=""></option>
<option name="bb" data-id="" selected="selected"></option>
<option name="cc" data-id=""></option>
</select>

JQ:

$(document).ready(function(){
var a = $("select option:selected").attr("name");
var b = $("select option:selected").attr("data-id");
alert(a + "\n" + b);
});

来源:https://www.cnblogs.com/NKing/p/7698133.html

动态的写法:

HTML:

                                       <select class="text-center activate" name="activate" id="activate" >
<option data-id="{$vo.Phonecard_id}" data-start="" value="" {if condition="$vo.activate eq 0"} selected {/if} >未使用</option>
<option data-id="{$vo.Phonecard_id}" data-start="" value="" {if condition="$vo.activate eq 1"} selected {/if} >使用中</option>
<option data-id="{$vo.Phonecard_id}" data-start="" value="" {if condition="$vo.activate eq 2"} selected {/if} >激活中</option>
</select>

JQ:

    $('.activate').on('change',function(){
var id = $(this).find("option:selected").attr('data-id');
var start = $(this).find("option:selected").attr('data-start'); console.log('id = ' + id);
console.log('start = ' + start);
})

JQ获取select上的option的data-start和data-id的更多相关文章

  1. jq获取被选中的option的值。jq获取被选中的单选按钮radio的值。

    温故而知新,一起复习下jq的知识点. (1) jq获取被选中的option的值 <select id="select_id"> <option value=&qu ...

  2. js动态获取select选中的option

    最近在写报表管理模块时,需要通过条件去筛选符合条件的数据,筛选条件用的布局有select,input等.在调试的过程中一直获取不到select选中的option.于是就查询些资料,发现用select的 ...

  3. 比较日期大小以及获取select选中的option的value

    原生JavaScript如何获取select选中的value // 1. 拿到select对象 const selectObject = document.getElementById('test') ...

  4. jQuery获取select中全部option值

    <select id="language"> <option value="">请选择</option> <optio ...

  5. pc端美化select,jquery获取select中的option的text值

      代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF ...

  6. 获取select 选中的option中自定义的名称的之

    <select style="width: 220px;height: 20px;margin: 0 0 0 20px;" id="invest_ticket&qu ...

  7. Jquery获取select选中的option的文本信息

    注意:以下用的$(this)代表当前选中的select框 第一种: $(this).children("option:selec... ...查看全文

  8. 获取select框下option所有值

    document.getElementById('roomId').options[0].value;获取第一个值 var roomIds = $("#roomId option" ...

  9. jq 获取select text

    var Reply_type_name=$("#Reply_type").find("option:selected").text();

随机推荐

  1. B. Lost Number【CF交互题 暴力】

    B. Lost Number[CF交互题 暴力] This is an interactive problem. Remember to flush your output while communi ...

  2. SHTC3温湿度传感器的使用

    1.SHTC3简单说明 SHTC3是一个检测温度.湿度的传感器,可以检测-40℃~125℃的温度范围和0%~100%的湿度范围. SHTC3的工作电压范围为:1.62V~3.6V. SHTC3使用的通 ...

  3. #VScodd集成Git Bash 命令行 #怎么把Git Bash集成到VScode

    配置 Step1. File-Preferences-Setting Step2. 搜索"terminal>integrated>shell A" Step3. 找到t ...

  4. PTA数据结构与算法题目集(中文) 7-15

    PTA数据结构与算法题目集(中文)  7-15 7-15 QQ帐户的申请与登陆 (25 分)   实现QQ新帐户申请和老帐户登陆的简化版功能.最大挑战是:据说现在的QQ号码已经有10位数了. 输入格式 ...

  5. Linux命令 dos2unix 的实际应用场景

    问题描述:书接上文springboot之停止与启动服务的脚本,编写杀死服务脚本的时候,总是不行,Linux会提示你类似下面这样的信息: killed pid: : arguments must be ...

  6. pip 安装 request 失败

    C:\Program Files\Python35\Scripts>pip install requests Collecting requests Using cached requests- ...

  7. 使用css动画实现领积分效果

    最近项目中要做一个领积分的效果,根据老板的描述,这个效果类似于支付宝蚂蚁森林里的领取能量.整体效果是就是在树周围飘着几个积分元素,上下滑动,类似星星闪烁,点击领取后,沿着树中心的位置滑动并消失,树上的 ...

  8. 团队项目-运动App

    一:团队成员介绍 队长:温学智 博客地址:https://www.cnblogs.com/dazhi151/                    技术型大佬,学习能力相对团队来说是最高的.并且作为班 ...

  9. 家庭记账本app进度之关于tap的相关操作1

    今天还主要学习关于怎样制作微信的先关的tap. 今天的主要成果是已经了解了相关的技术,以及相关的思路.代码经过一个下午的编写,基本接近尾声. 更详细的实验代码,以及相关的知识点将在明天完善后进行发表. ...

  10. Android调用系统设置

    最近,弄了一下,调用系统设置的方法,Android4.0的系统,下面的所有设置项,都亲测可以调用.首先调用的方式如下: Intent mintent_setting_time = new Intent ...