如何使用jquery.post发布变量

时间:2015-08-11 18:19:16

标签: jquery

我想发布3个变量。请求,Arival,出发。它必须在脚本中的某个位置。我尝试了不同的方法,但无法使其正常工作

  Request = '{REQUEST}',
  Arrival = '{ARRIVAL}',
  Departure = '{DEPARTURE}'

我的脚本是:

<script>

   jQuery().ready(function(){
     setInterval("getResult()",1000); 
 });

   function getResult(){   
     jQuery.post("search.php", function( data ) {
     jQuery("#show").html(data);
 });
}
</script>

<button onclick="getResult()" >Get result</button>
<div id="show"></div>

3 个答案:

答案 0 :(得分:0)

在StakOverflow中提问之前,你应该阅读一些文档并尝试一些东西。

http://api.jquery.com/jquery.post/

location

答案 1 :(得分:0)

$.post( "search.php", {string: string, name: name}, function( data ) {
  $( "#show" ).html( data );
});

最佳参考: http://api.jquery.com/jquery.post/

答案 2 :(得分:0)

我让脚本正常工作,但是当我更新变量时会发生变化。变量的值不会更新。

  <script>
  function getResult()
  {   
  jQuery.post( "search.php", { request: '{REQUEST}', arrival: '{ARRIVAL}', departure: '{DEPARTURE}' })
  .done(function( data ) {
  jQuery("#show").html(data);

      });
  }
  </script>

  <button onclick="getResult()" >Get result</button>
  <div id="show"></div>