【发布时间】:2014-04-23 19:43:04
【问题描述】:
我为我正在构建的网站设计了这个非常棒的搜索框。但是,我不知道如何让搜索栏工作并实际显示内容。您可以在下面找到我网站特定部分的 Html 和 CSS 文件:
.searchbox{
/*defining width of form element*/
width:350px;
/*centering the form element*/
margin-top: 200px;
margin-left: 250px;
margin-bottom: 370px;
}
input[type="search"]{
padding:10px 15px 10px 50px;
font-size:36px;
color:#4D4D4D;
/*removing border from search box*/
border:none;
/*defining background image as a search symbol*/
background-image:url(img/search-btn.png);
background-repeat:no-repeat;
/*background-size*/
-webkit-background-size:35px 35px;
-moz-background-size:35px 35px;
-o-background-size:35px 35px;
background-size:35px 35px;
/*positioning background image*/
background-position:8px 12px;
/*changing background color form white*/
background-color:#C6E2FF;
}
/*now using placeholder property to change color of placholder text and making it consitent accross the browser by use of prefix*/
input[type="search"]::-webkit-input-placeholder{
color:#0276FD;
}
input[type="search"]:-moz-placeholder { /* Firefox 18- */
color: #0276FD;
}
input[type="search"]::-moz-placeholder { /* Firefox 19+ */
color: #0276FD;
}
input[type="search"]:-ms-input-placeholder { /* interner explorer*/
color: #0276FD;
}
form.searchbox a{
display:block;
/*removing underlines from anchor element*/
text-decoration:none;
color:#1f5350;
font-size:30px;
background-color:#C6E2FF;
padding:10px;
}
form.searchbox ul{
width:465px;
/*removing predefined bullet points from list*/
list-style:none;
/*removing padding from list items*/
padding:0;
}
form.searchbox ul li{
margin-bottom:10px;
}
/*adding effect when the mouse is hovered over list item*/
.searchbox ul li a:hover{
color:#395D33;
background:#8CDD81;
}
/*moving it slightly toward right when hovered*/
.searchbox ul li:hover{
/*transform*/
-webkit-transform:translateX(20px);
-moz-transform:translateX(20px);
-ms-transform:translateX(20px);
-o-transform:translateX(20px);
transform:translateX(20px);
}
/*now first we will hide the suggestion list*/
.suggestions li{
overflow:hidden;
height:0;
-webkit-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
transition:all 0.3s ease-in-out;
}
/*and make the suggestion reappear when user focus on search field*/
input[type="search"]:focus + .suggestions li{
height:63px;
}
<section class="searcharea">
<div class="wrapper">
<form class="searchbox" action="Resources.html" target="_NEW">
<input type="search" placeholder="search.." />
<ul class="suggestions">
<li><a href="What is palliative care.html">What is palliative ca...</a></li>
<li><a href="Who needs palliative care.html">Who needs palliative ca...</a></li>
<li><a href="Talking about palliative care.html">Talking about palliative ca...</a></li>
<li><a href="How to interact with providers.html">how to interact with providers...</a></li>
<li><a href="Resources">Resourc...</a></li>
</ul>
</form>
</div>
</section>
请帮忙。我不想为此使用 PHP,因为我不熟悉创建数据库或任何东西。
【问题讨论】:
-
您要搜索什么?如果不是 PHP,您使用的是什么后端服务器技术?
-
是的,那是我的问题。如果您没有数据库,人们究竟在搜索什么?
-
这可以在没有 PHP 的情况下使用 AJAX 来完成,但不能没有数据库。您必须在您搜索的页面上包含您搜索的所有页面的所有内容,如果您有足够多的内容来保证搜索栏,这肯定会降低您的加载速度。
-
嗨,我实际上改变了不使用 PHP 的想法。我使用 mySQL 建立了一个数据库,其中包含我希望用户搜索的内容。基本上,我希望用户轻松搜索我页面上的内容,并将结果显示在我创建的结果页面上。
标签: javascript html css search