Chuyển id khối đến search_ajax_way
chức năng:
$("#search_query").keyup(function(event){
event.preventDefault();
search_ajax_way(this.id);
});
Sau đó, chuyển id khối trong tham số dữ liệu trong yêu cầu ajax:
function search_ajax_way(blockId){
$("#search_results").show();
var search_this=$("#search_query").val();
$.post("search.php", {searchit : search_this, 'blockId': blockId}, function(data){
$("#display_results").html(data);
})
}
Bây giờ blockId sẽ có sẵn trong tập lệnh php của bạn dưới dạng $_POST['blockId']
.