1

我正在创建一个类似 Gmail 的搜索框,在其中单击文本框,它会打开一个新的 div,我可以在其中输入各个字段的搜索条件。如何将 TextBox('#searchTextBox) 或包含文本框的 div 与搜索表单 ('#gmailSearchBox) 的 div 紧密相连?此外,我正在使用引导响应,因此文本框的位置和大小会发生变化。所以只设置 div 样式 display:block 和 display:none 不起作用。谢谢。

html代码:

<div style="border:1px solid grey; border-radius:3px; max-width:300px; padding-right:0px; padding-left:0px;"class="container-fluid">
    <div style="left:0px;right:20px; line-height:inherit; float:left; width:100%; ">
        <input id="searchTextBox" type="text" style="border:none; width:95%; line-height:inherit; padding:0px 0px 0px 0px;"> 
        <a id="showSearchBox" href="#" style="height:20px">
             <span class="caret" style="vertical-align:middle; height:100%"> </span>
        </a>
    </input>
</div>
</div>
<input type="button" value="Search" Class="btn btn-primary" /><br>
Various<br>
Other<br>
Information<br>
Goes <br>
Here<br>
<div id='gmailSearchBox' class="gmailSearchBox" style="position:absolute; display:none; border:1px solid grey">
<form action="" method="post">
    From:<input type="text" id="fromDate">
    <br/>
    To: <input type="text" id="toDate">
    <br/>
    Type:<select id="logType">
            <option>--Select Type--</option>
        </select>
    <br/>
    Text:<input type="text" id="searchText">
    <br/>
    <input type="submit" class="btn btn-primary">
</form>
</div>

Javascript代码

$('#showSearchBox').click(showSearchBox);
function showSearchBox() {
    $('#gmailSearchBox').css('display','block')
}

JsFiddle 链接 - http://jsfiddle.net/7FBax/

4

2 回答 2

1

如果您想使用 css 执行此操作,您可能需要稍微更改您的标记。请参阅以下小提琴,它可以满足您的需求:http: //jsfiddle.net/97BwC/1/

修改后的标记:

<div id="search" style=""class="container-fluid">
<div id="searchInputWrapper" style="">
    <input type="text" style=""> <a id="showSearchBox" href="#" style="height:20px">
             <span class="caret" style="vertical-align:middle; height:100%"> </span>
        </a>

    </input>
</div>
<div id='gmailSearchBox' class="gmailSearchBox" style="">
    <form action="" method="post">From:
        <input type="text" id="fromDate">
        <br/>To:
        <input type="text" id="toDate">
        <br/>Type:
        <select id="logType">
            <option>--Select Type--</option>
        </select>
        <br/>Text:
        <input type="text" id="searchText">
        <br/>
        <input type="submit" class="btn btn-primary">
    </form>
</div>

的CSS:

    #search {
        position:relative;
        border:1px solid grey;
        border-radius:3px;
        max-width:300px;
        padding-right:0px;
        padding-left:0px;
    }
    #searchInputWrapper {
        left:0px;
        right:20px;
        line-height:inherit;
        float:left;
        width:100%;
    }
    #searchInputWrapper input {
        border:none;
        width:95%;
        line-height:inherit;
        padding:0px 0px 0px 0px;
    }
    #gmailSearchBox {
        position:absolute;
        bottom:-212px;
        right:0;
        display:none;
        border:1px solid grey;
        background-color:#fff;
    }

更新:

如果搜索框的高度不是静态的,您可以使用 javascript 设置底部偏移量。这是一个更新的小提琴:http: //jsfiddle.net/GPTJ4/2/

这是修改后的处理程序:

$('#showSearchBox').click(showSearchBox);

function showSearchBox() {
    var height = 0,
        $searchBox = $('#gmailSearchBox');

    $searchBox.css({display:'block'});

    //get the height of the search box
    height = $searchBox.height();

    //set the offset equal to the height
    $searchBox.css({bottom:-height +'px'});
}
于 2013-03-09T00:55:59.860 回答
0

如果您将 #gmailSearchBox 放在包含输入的同一 div 中,它将按您的意图工作。您可能还想为#gmailSearchBox 设置背景颜色。

于 2013-03-09T00:05:48.873 回答