How to implement a simple way to create a reset button on the select box without showing the select box? This article will share with you the method (code) of using Jquery and CSS to implement the selection box reset button. Friends in need can refer to it.
The code is as follows:
HTML
<select> <option value="">Select a color..</option> <option value="red">Red</option> <option value="green">Green</option> <option value="blue">Blue</option> </select> <div class="displaySelect"> <span class="value"></span> <span class="close">⊗</span> </div>
CSS
.displaySelect{ display:none; border: 1px solid; } select, .displaySelect { text-indent:20px; font-family:helvetica; } select, .displaySelect{ font-size:22px; height:50px; line-height:50px; width:100%; text-transform:capitalize; } .displaySelect .close{ display:block; float:right; width:10%; text-align:center; font-size:52px; cursor:pointer; }
Jquery
var select = $('select'); var selectResults = $('.displaySelect'); var selectValue = $('.value', selectResults); var selectClose = $('.close', selectResults); select.on('change', function() { $(this).add(selectResults).toggle(); selectValue.html(this.value); }); selectClose.click(function(){ select.val('').fadeIn(); selectResults.toggle(); selectValue.html(''); });
The effect is as follows:
The above is the detailed content of Use Jquery and CSS to implement the selection box reset button (code example). For more information, please follow other related articles on the PHP Chinese website!