足球游戏_中国足彩网¥体育资讯$

Bootstrap学习系列之使用 Bootstrap Typeahead 组件实现百度下拉效果
来源:易贤网 阅读:1219 次 日期:2016-07-25 16:01:00
温馨提示:易贤网小编为您整理了“Bootstrap学习系列之使用 Bootstrap Typeahead 组件实现百度下拉效果”,方便广大网友查阅!

这篇文章主要介绍了Bootstrap学习系列之使用 Bootstrap Typeahead 组件实现百度下拉效果的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下

页面代码:

@{

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>

使用脚本填充数据

<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数据1", "JS数据2", "JS数据3"];

},

highlighter: function (item) {

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

},

updater: function (item) {

console.log("'" + item + "' selected."); //浏览器控制台输出

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

return item;

}

});

})

</script>

支持 Ajax 获取数据

<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>

使用对象数据

<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学习系列之使用 Bootstrap Typeahead 组件实现百度下拉效果,希望对大家有所帮助

中国足彩网信息请查看网络编程
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 足球游戏_中国足彩网¥体育资讯$ 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标