Bootstrap學(xué)習(xí)系列之使用 Bootstrap Typeahead 組件實(shí)現(xiàn)百度下拉效果
來源:易賢網(wǎng) 閱讀:1203 次 日期:2016-07-25 16:01:00
溫馨提示:易賢網(wǎng)小編為您整理了“Bootstrap學(xué)習(xí)系列之使用 Bootstrap Typeahead 組件實(shí)現(xiàn)百度下拉效果”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了Bootstrap學(xué)習(xí)系列之使用 Bootstrap Typeahead 組件實(shí)現(xiàn)百度下拉效果的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下

頁面代碼:

@{

ViewBag.Title = "Index";

}

<script src="Scripts/bootstrap-typeahead.js"></script>

<script src="Scripts/underscore-min.js"></script>

<div>

簡單使用

<div style="margin: 10px 50px">

<label for="product_search">

Product Search:

</label>

<input id="product_search" type="text" data-provide="typeahead" data-source='["DATA1", "DATA2", "DATA3"]' />

</div>

使用腳本填充數(shù)據(jù)

<div style="margin: 10px 50px">

<label for="product_search">

Product Search:

</label>

<input id="product_search_js" type="text" data-provide="typeahead">

</div>

<script type="text/javascript">

$(document).ready(function ($) {

$.fn.typeahead.Constructor.prototype.blur = function () {

var that = this;

setTimeout(function () { that.hide() }, 250);

};

$('#product_search_js').typeahead({

source: function (query, process) {

return ["JS數(shù)據(jù)1", "JS數(shù)據(jù)2", "JS數(shù)據(jù)3"];

},

highlighter: function (item) {

return "==>" + item + "<==";

},

updater: function (item) {

console.log("'" + item + "' selected."); //瀏覽器控制臺輸出

$("#product_search").val(item);

return item;

}

});

})

</script>

支持 Ajax 獲取數(shù)據(jù)

<div style="margin: 10px 50px">

<label for="product_search">

Product Search:

</label>

<input id="product_search_ajax" type="text" data-provide="typeahead">

</div>

<script type="text/javascript">

$('#product_search_ajax').typeahead({

source: function (query, process) {

var parameter = { query: query };

$.post('@Url.Action("AjaxService")', parameter, function (data) {

process(data);

});

}

});

</script>

使用對象數(shù)據(jù)

<div style="margin: 10px 50px">

<label for="product_search">

Product Search:

</label>

<input id="product_search_object" type="text" data-provide="typeahead">

</div>

<script type="text/javascript">

$(function () {

var products = [

{

id: 0,

name: "object1",

price: 499.98

},

{

id: 1,

name: "object2",

price: 134.99

},

{

id: 2,

name: "object3",

price: 49.95

}

];

$('#product_search_object').typeahead({

source: function (query, process) {

var results = _.map(products, function (product) {

return product.name;

});

process(results);

},

highlighter: function (item) {

return "==>" + item + "<==";

},

updater: function (item) {

console.log("'" + item + "' selected.");

return item;

}

});

});

</script>

</div>

控制器

public ActionResult Index()

{

return View();

}

public ActionResult AjaxService()

{

string query = "";

if (!string.IsNullOrWhiteSpace(Request["Query"]))

query = Request["Query"].ToString();

var data = ("AJAX1,AJAX2,AJAX3").Split(',');

return Json(data);

}

效果圖展示如下:

名單

以上所述是小編給大家介紹的Bootstrap學(xué)習(xí)系列之使用 Bootstrap Typeahead 組件實(shí)現(xiàn)百度下拉效果,希望對大家有所幫助

更多信息請查看網(wǎng)絡(luò)編程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)