jQuery下拉美化搜索表单效果代码分享

这篇文章主要介绍了jQuery下拉美化搜索表单样式,功能实现非常简单,推荐给大家,有需要的小伙伴可以参考下。

本文实例讲述了jQuery下拉美化搜索表单效果。分享给大家供大家参考。具体如下:
JQuery下拉美化搜索表单样式代码是一款美化下拉框的表单,样式已写好,需要的朋友改一下就可以用了。
运行效果图:-------------------查看效果-------------------

jQuery下拉美化搜索表单效果代码分享

小提示:浏览器中如果不能正常运行,可以尝试切换浏览模式。
为大家分享的jQuery下拉美化搜索表单效果代码如下

<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery下拉美化搜索表单样式代码</title> <link href="https://www.jb51.net/css/base.css" type="text/css" /> <style type="text/css"> /* search */ .search{border:2px solid #f58400;height:35px;margin:40px auto 0 auto;width:525px;} .search select{display:none;} .search .select_box{font-size:12px;color:#999999;width:100px;line-height:35px;float:left;position:relative;} .search .select_showbox{height:35px;background:url(images/search_ico.png) no-repeat 80px center;text-indent:1.5em;} .search .select_showbox.active{background:url(images/search_ico_hover.png) no-repeat 80px center;} .search .select_option{border:2px solid #f58400;border-top:none;display:none;left:-2px;top:35px;position:absolute;z-index:99;background:#fff;} .search .select_option li{text-indent:1.5em;width:90px;cursor:pointer;} .search .select_option li.selected{background-color:#F3F3F3;color:#999;} .search .select_option li.hover{background:#BEBEBE;color:#fff;} .search input.inp_srh,.search input.btn_srh{border:none;background:none;height:35px;line-height:35px;float:left} .search input.inp_srh{outline:none;width:365px;} .search input.btn_srh{background:#f58400;color:#FFF;font-family:"微软雅黑";font-size:15px;width:60px;} </style> </head> <body> <div> <form method="post" action="/e/search/index.php"> <input type='hidden' value='9'> <input type="hidden" value="title,newstext"> <select> <option value="0">搜索全部</option> <option value="1">新闻中心</option> <option value="4">技术文档</option> <option value="22">下载中心</option> </select> <input placeholder="请输入您要搜索的作品" > <input type="submit" value="搜索"> </form> </div> <script type="text/javascript" src="https://www.jb51.net/js/jquery-1.8.3.min.js"></script> <script type="text/javascript" src="https://www.jb51.net/js/jquery.select.js"></script> <div> </div> </body> </html>

以上就是为大家分享的jQuery下拉美化搜索表单样式代码,希望大家可以喜欢。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wggfyx.html