如何使用php会话变量传递jquery变量

时间:2018-06-20 11:00:17

标签: php jquery html

 <div class="wrap-input100 validate-input bg1 rs1-wrap-input100">
                <div class="contact100-form-btn" id="add_driver">
                <span>
                Add another Driver
                <i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i>
                </span>
                </div>
            </div> 


<script>    
 var count = 0;
 jQuery("#add_driver").click(function(){
 count++;
 }); </script>

我如何使用php会话或任何其他方法将变量count的值传递到下一页? 有什么简单的方法吗?

2 个答案:

答案 0 :(得分:2)

使用下面的代码,您可以将计数值发送到secondpage.php,在第二页中,使用$_POST['count_var']访问变量。您可以在success: function (response)

中查看您的成功回复
<script>    
 var count = 0;
 jQuery("#add_driver").click(function(){
 count++;
 $.ajax({
                        type: 'post',
                        url: 'secondpage.php',
                        data: {
                            count_var: count,

                        },
                        success: function (response) {
                             document.getElementById("divid").innerHTML = response;
                        }
                    });
 }); 

 </script>

答案 1 :(得分:1)

使用localStorage

第一页

var count = 0;
 jQuery("#add_driver").click(function(){
     count++;
     localStorage.setItem("count", count);
 });

第二页

 alert(localStorage.getItem("count"));
  

应该是同一个域