html5中的select下拉框的option的样式(宽度)能不能改变,怎么去下样式,求大神帮忙
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html5中的select下拉框的option的样式(宽度)能不能改变,怎么去下样式,求大神帮忙相关的知识,希望对你有一定的参考价值。
参考技术A selectionappearance:none;
-moz-appearance: none; /* Firefox */
-webkit-appearance:none; /* Safari 和 Chrome */
可以用appearance去掉默认样式,然后你就能随便搞了。
参考技术B <select style="width:100px">jQuery操作select下拉框的text值和value值的方法
1、jquery获取当前选中select的text值
var checkText=$("#slc1").find("option:selected").text();
2、jquery获取当前选中select的value值
var checkValue=$("#slc1").val();
3、jquery获取当前选中select的索引值
var index=$("#slc1 ").get(0).selectedIndex;
4、jquery设置索引值为1的项为当前选中项
$("#slc1 ").get(0).selectedIndex=1;
5、jquery设置value值2的项为当前选中项
$("#slc1 ").val(2);
6、jquery设置text值为"青藤园"的项为当前选中项
$("#slc1 option[text=‘青园w‘]").attr("selected",true);
7、为指定select下拉框追加一个option(追加到在末尾)
$("#slc2").append(""+i+"");
8、为制定select下拉框插入一个option(插入到第一个位置)
$("#slc2").prepend("请选择");
9、jquery删除select下拉框的最后一个option
$("#slc2 option:last").remove();
以上是关于html5中的select下拉框的option的样式(宽度)能不能改变,怎么去下样式,求大神帮忙的主要内容,如果未能解决你的问题,请参考以下文章