Change the default style of select, usually through ul,li to simulate to achieve. There are many Jquery plug-ins that change the default select style in this way. According to the feedback from the programmer, this method cannot obtain data after the form is submitted. Later, after experiments, different JS/Jquery plug-ins were used, and the result was the same: the data could not be obtained. Later, I read a blog written by a foreigner. He used CSS style to add a div outside the select, set the width of the select to be smaller than the width of the parent div, and then change the style of the default arrow of the select by setting the background attribute of the div. This method is a good method. It does not require writing scripts, but only uses pure CSS to implement it. However, this method also has flaws. In the IE series, there will be a background color block when a certain option is selected. IE7-IE10 all have this bug. In Opera, the background image of the div is not displayed, that is, the drop-down arrow of the select is not displayed. I don't know what the reason is. The following code Copy code The code is as follows:<div class="select_style"> <select name="select"> <option>AAAAAAAAAAA</option> <option>BBBBBBBBBBB</option> <option selected>CCCCCCCCCCC</option> <option>DDDDDDDDDD</option> </select> </div> Copy code The code is as follows:.select_style {width:240px; height:30px; overflow:hidden; background:url(../images/arrow.png) no-repeat 215px; border:1px solid #ccc; -moz-border-radius: 5px; /* Gecko browsers */ -webkit-border-radius: 5px; /* Webkit browsers */ border-radius:5px; } .select_style select { padding:5px; background:transparent; width:268px; font-size: 16px; border:none; height:30px; -webkit-appearance: none; /*for Webkit browsers*/ } |
<<: Detailed process of installing and deploying onlyoffice in docker
>>: MySQL restores data through binlog
When the jsp that is jumped to after the struts2 a...
I don't know if you have ever encountered suc...
Table of contents Preface 1. Use $attrs and $list...
The JD carousel was implemented using pure HTML a...
1. Background execution Generally, programs on Li...
Use blockquote for long citations, q for short ci...
Table of contents Server Planning 1. Install syst...
Vue+Openlayer uses modify to modify elements. The...
Why are the SQL queries you write slow? Why do th...
After minimizing the installation of Python8, I i...
Development Background: Recently, I am working on...
Preface Recently, I have been helping clients con...
Preface 1. Benchmarking is a type of performance ...
1. Introduction When filtering unknown or partial...
Swarm Cluster Management Introduction Docker Swar...