在我看来我有
@Html.TextBoxFor(per => per.Hospital, new {
style = "width:220px", @maxlength = "50",
data_autocomplete = Url.Action("HospitalList", "Person") })
我的jQuery是
$(document).ready(function () {
$('input[data-autocomplete]').each(function () {
var url = $(this).data('autocomplete');
$(this).autocomplete({
source: function (request, response) {
$.getJSON(url, {
term: request.term
}, response);
}
});
});
});
我创建了一个新的 Action 结果
public ActionResult HospitalList(string term)
{
List<string> result = new List<string>();
result.Add("Hospital 1");
result.Add("NYUMC");
result.Add("Christ");
result.Add("Bellevue");
result.Add("NewYork-Presbyterian");
result.Add("North Central Bronx Hospital");
result = result.Where(r => r.Contains(term)).ToList();
return Json(result , JsonRequestBehavior.AllowGet);
}
我包含了一个 jquery 库
<script src='<%: Url.Content("~/Scripts/jQueryUI/jquery-1.4.2.min.js") %>' type="text/javascript"></script>
<script src='<%: Url.Content("~/Scripts/jQueryUI/jquery-ui-1.8.2.custom.min.js") %>' type="text/javascript"></script>
现在我哪里错了。我只看到一个文本框,没有自动完成的行为。