js实现select下拉框选择
(编辑:jimmy 日期: 2024/11/8 浏览:3 次 )
最近在做一个项目需要兼容到ie不同版本,在使用select时遇到了各种问题。后来索性就自己使用原生js实现了这样一个下拉框,话不多说,直接上代码吧。
<html lang="en"> <head> <meta charset="UTF-8"> <title>自定义select</title> </head> <style> *{ margin: 0; padding: 0; } #main{ position: relative; width: 280px; height: 42px; } #content{ width: 280px; height: 42px; line-height: 42px; padding-left: 10px; background: rgb(255, 255, 255); border-radius: 2px; border: 1px solid rgb(221, 221, 221); font-size: 16px; font-family: MicrosoftYaHei; color: rgb(51, 51, 51); cursor: pointer; } #selectImg{ position: absolute; top:13px; right: 10px; cursor: pointer; } #selectItem{ display: none; border: 1px solid #eee; width: 290px; } #selectItem ul{ list-style: none; } #selectItem ul li{ height: 30px; line-height: 30px; padding-left: 10px; cursor: pointer; } #selectItem ul li:hover{ background-color:#f5f7fa; } </style> <body> <div id="main"> <div id="content"> </div> <img id="selectImg" src="/UploadFiles/2021-04-02/icon_select.png">效果图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:js实现二级联动简单实例