16
트위터 부트 스트랩 typeahead 아약스 예제
드롭 다운을 채우기 위해 아약스 호출을 하는 Twitter 부트 스트랩 typeahead 요소 의 작동 예제를 찾으려고합니다 . 기존 작업 jquery 자동 완성 예제가 있는데 Ajax URL을 정의하고 응답을 처리하는 방법 <script type="text/javascript"> //<![CDATA[ $(document).ready(function() { var options = { minChars:3, max:20 }; $("#runnerquery").autocomplete('./index/runnerfilter/format/html',options).result( function(event, data, formatted) { window.location = "./runner/index/id/"+data[1]; …