sql >> Database teknologi >  >> RDS >> Mysql

sender id-navn ved klik ved hjælp af ajax til php

Send blok-id til search_ajax_way funktion:

$("#search_query").keyup(function(event){
    event.preventDefault();
    search_ajax_way(this.id);
});

Send derefter blok-id i dataparam i ajax-anmodning:

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);

   })
}

Nu vil blockId være tilgængeligt i dit php-script som $_POST['blockId'] .



  1. PostgreSQL:Forespørgsel har ingen destination for resultatdata

  2. Sådan installeres SQL Server på Linux

  3. Hvordan SUBTIME() virker i MariaDB

  4. Åbn automatisk SQLite-forespørgselsresultater i Excel