Jquery 자동완성 검색기능 추가하기 (Autocomplete) 파이어폭스 오류
본문
이 스크립트가 크롬, 익스에서는 잘 되는데 파폭에서는 오류가 발생하네요.
누가 해결책 가지고 계신가요?
<script>
$(document).ready(function() {
// 오토컴플리트 (검색어 자동완성)
$("#thema_wrapper").on("keyup", "#stx", function(){
var stx = $(this).val(); /* 입력한 검색어 */
$(this).autocomplete({
source:function(request, response) {
$.getJSON(g5_url+"/_search_popular.php", {
/* _search_popular.php 파일로 넘길 변수값을 이곳에 작성하시면 됩니다. GET 으로 넘어갑니다. */
/* 콤마로 구분하시면 되요 ex) sfl:"wr_subject", stx:stx, ........ */
stx : stx
}, response);
},
minLength:2, /*최소 검색 글자수*/
delay: 150, /* 검색어 입력후 표시되는 시간 - 숫자가 클수록 느리게 출력 */
focus:function(event, ui) {
/* 검색을 통하여 넘어온 값을 여기서 처리 */
console.log(ui.item.value); /* 콘솔 확인용이므로 삭제하거나 주석처리 하여도 됩니다. */
},
close:function(event, ui) {
}
})
});
// 오토컴플리트 종료
});
</script>
<?php
include_once('./_common.php');
$stx = $_GET['stx'];
$sql = "select
distinct(pp_word)
from
g5_popular
where
pp_word like '%".$stx."%'
group by
pp_word
order by
pp_word asc limit 10 ";
$result = sql_query($sql,true);
// value : 검색된 단어이며, input 값으로 넘어갑니다.
// label : 특정검색어를 입력시 자동완성 리스트로 표시됩니다. (다양하게 응용가능)
while($row=sql_fetch_array($result)) {
$arr[] = array(
"value" => $row['pp_word'],
"label" => $row['pp_word']
);
}
echo json_encode($arr);
?>
해결방법 아시는 분? 답변 좀 부탁할께요.
파폭에서는 한글 검색어 입력시 다른 검색어를 방출합니다.
또 18112 검색시 1811 의 결과를 가져오네요.
답변 1
$(document).ready(function() {
위코드 다음줄에 아래 코드를 추가해 보세요.
setInterval(function() {
jQuery('#sch_stx').filter('[value!=""]:focus').trigger('keydown');
}, 500);
완벽한 해결 방법은 아닙니다.