这是我追求的互动..
- 用户点击搜索链接。
- 搜索输入幻灯片打开。
- 打开后,搜索链接变成表单提交按钮,并发送表单。
我的代码...
HTML
<div class="searchB">
<form action="/search-results/">
<span class="i-search"></span>
<input class="srchType" type="search" name="q" placeholder="e.g type here...">
<input class="srchGo" type="submit" value="SEARCH">
</form>
</div>
CSS
.searchB {
float: left;
padding-top: $baseline/3;
}
.searchB span {
font-size: 1.3em;
}
.srchType {
display: none;
background-color: #fff;
border:none;
border-bottom: 1px solid #000;
}
.srchGo {
background-color: #fff;
border: none;
cursor:pointer;
}
JS
$('.srchGo').click(function(e){
e.preventDefault();
$('.srchType').show('slide');
});
我还想知道如何集成它,以便用户开始输入后,搜索链接会添加一类粗体文本(表示搜索链接现在可以点击)
我目前处于第 2 步,但无法考虑如何集成提交链接。
任何帮助将不胜感激。