http://vietjack.com/php/index.jsp Copyright © vietjack.com AutoComplete Search với AJAX PHP Auto Complete Search gì? AutoComplete search box cung cấp gợi ý bạn nhập liệu vào trường Tại đây, sử dụng XML để gọi gợi ý Autocomplete Ví dụ minh họa cách sử dụng Autocomplete text box sử dụng với PHP Index page Index page nên sau: div { width:240px; color:green; } function showResult(str) { if (str.length==0) { document.getElementById("livesearch").innerHTML=""; document.getElementById("livesearch").style.border="0px"; return; } if (window.XMLHttpRequest) { xmlhttp=new XMLHttpRequest(); } else http://vietjack.com/ Trang chia sẻ học online miễn phí Page http://vietjack.com/php/index.jsp Copyright © vietjack.com { xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("livesearch").innerHTML=xmlhttp.responseText; document.getElementById("livesearch").style.border="1px solid #A5ACB2"; } } xmlhttp.open("GET","livesearch.php?q="+str,true); xmlhttp.send(); } Enter Course Name More Details Tệp livesearch.php Tệp sử dụng để gọi data từ xml file gửi kết tới trình duyệt web