原本的BootStrap 2有 Typeahead 功能, 但在BootStrap 3卻拿掉,
並推薦使用者用 Twitter Typeahead
可是這個的教學使用實在有夠少,
雖然他的官網上已經有教學,
但是有結合BootStrap 3的實在找不太到
所幸我有小小的試出來,做個記錄
先PO上 Twitter Typehead 的 官網, 請自行點擊
本篇著重在和BootStrap的 input-group 功能做結合
先在BootStrap 中加入一個 input-group
本篇著重在和BootStrap的 input-group 功能做結合
先在BootStrap 中加入一個 input-group
<div class="input-group">
<span class="input-group-addon">Search</span>
<asp:TextBox ID="txt_Search" runat="server" placeholder="Search" ClientIDMode="Static">
</asp:TextBox>
</div>