博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js&jquery 获取select下拉框的值、文本内容、自定义属性
阅读量:6118 次
发布时间:2019-06-21

本文共 762 字,大约阅读时间需要 2 分钟。

 

js&jquery 获取select下拉框的值、文本内容、自定义属性

CreationTime--2018年7月2日09点22分

Author:Marydon

html

1.jquery

window.onload = function(){    // 1.取值    $('#test option:selected').val();    // 2.取文本内容    $('#test option:selected').text();    // 3.获取自定义属性tip    $('#test option:selected').attr('tip');}

2.javascript

window.onload = function(){    // 获取选中项的索引    var selectedIndex = document.querySelector('#test').selectedIndex;    // 1.取值    document.getElementById('test').value;// 2    // 2.取文本内容    document.getElementById('test').options[selectedIndex].innerText;// http://wwww.cnblogs.com/Marydon20170307    // 3.获取自定义属性tip    document.getElementById('test').options[selectedIndex].getAttribute('tip');// welcome}

 

 相关推荐:

 

 
你可能感兴趣的文章
Android url中文编码问题
查看>>
ExtJs之Ext.ElementLoader.load
查看>>
The Suspects 简单的并查集
查看>>
http://www.importnew.com/10937.html
查看>>
[javaSE] 集合框架(ArrayList,LinkedList,Vector)
查看>>
批量kill进程
查看>>
运维利器:万能的 strace
查看>>
[dts]DTS实例分析
查看>>
在JAVA中如何跳出当前的多重嵌套循环
查看>>
通用视图
查看>>
通过Http接口及SolrNet 两种方法基于Solr5.5.1 实现CURD
查看>>
ubuntu学习的简单笔记
查看>>
矩阵、向量求导法则
查看>>
JAVA在线基础教程!
查看>>
configparser模块
查看>>
java编译做了哪些事?
查看>>
uwsgi安装过程中遇到的问题
查看>>
Linux安装xwindow图形界面
查看>>
SPSS19.0实战之聚类分析
查看>>
ubuntu下怎么解决python "Non-ASCII character"错误
查看>>