返信の助けを借りて、コードを次のように変更しました
@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);
}
});
});
});
そして、新しいアクション結果を作成しました
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");
return Json(result , JsonRequestBehavior.AllowGet);
}
今私はどこに行くのですか?テキストボックスが表示されるだけで、オートコンプリートの動作はありません。それが機能するためにjqueryライブラリを含める必要がありますか