Tak, musisz tutaj użyć ajax. Sprawdź poniższy kod i uwagi.
Napisz funkcję, która zwraca ActiveXObject()
który wykonałby wywołanie ajax jako
function getXMLHTTP() {
var xmlhttp = false;
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e1) {
xmlhttp = false;
}
}
}
}
return xmlhttp;
}
Następnie napisz funkcję specyficzną dla Twojej witryny, która będzie pobierać żądane dane jako
function getProducts(){
var select1 = document.getElementById("cboCategory");
var strURL = "getproducts.php?city="+select1.options[select1.selectedIndex].value;
var req = getXMLHTTP(); // function to get xmlhttp object
if (req) {
req.onreadystatechange = function() {
if (req.readyState == 4) { // data is retrieved from server
if (req.status == 200) { // which reprents ok status
document.getElementById('productsdiv').innerHTML = req.responseText; // div to be updated
} else {
alert("[GET Products]There was a problem while using XMLHTTP:\n" + req.statusText);
}
}
};
req.open("GET", strURL, true); // open url using get method
req.send(null);
}
}
Ta funkcja byłaby wywoływana w przypadku zmiany zdarzenia cboCategory
wybierz opcje, aby odpowiedni html był
<select onchange="getProducts()" id="cboCategory" class="box">
...
</select>
<!-- Can be anywhere on same page -->
<div id="productdiv"> </div>
Twoja strona getproduct.php zwróci html jako ciąg znaków, który nadpisze zawartość producstdiv
na Twojej stronie HTML.
Możesz również zwrócić dane z php jako json . Sprawdź wiki tagów, aby uzyskać więcej informacji. Możesz też użyć jquery wykonać połączenie ajaxowe.