1
我有一個內置Bootstrap v3.1.0的網站,裏面有一個文本輸入框。我想對其應用自動完成功能,但無法使Typeahead.js正常工作!帶Typeahead的Bootstrap 3.1.0
當我輸入內容時,我沒有自動完成!
查看代碼:
@Html.TextBoxFor(x => x.Manufacturer, new { @class = "form-control manufacturer" })
@Html.ValidationMessageFor(x => x.Manufacturer)
JS代碼
$(function() {
$('.manufacturer').typeahead(null,
{
name: 'manufacturers',
local: ["Audi",
"BMW",
"Vauxhall",
"Toyota"
]
});
});
我在做什麼錯?我還將autocomplete="off"
添加到我的輸入字段,但仍然沒有做任何事情。我也確保所有的腳本都被加載。
我將不勝感激任何幫助。
謝謝。