ブロックIDをsearch_ajax_way
に渡します 機能:
$("#search_query").keyup(function(event){
event.preventDefault();
search_ajax_way(this.id);
});
次に、ajaxリクエストのデータパラメータでブロックIDを渡します:
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);
})
}
これで、blockIdがphpスクリプトで$_POST['blockId']
として使用できるようになります。 。