doushan1863 2016-01-21 14:44
浏览 34
已采纳

使用Jquery将变量从PHP文件传递到php文件

I want to pass a variable from file1.php to file2.php using jquery.

file1.php

<?php
    $user_rank = $rank;
?>

file2.php

<?php
    $user_rank = $_GET['user_rank'];
?>

AJAX

function getRank()
{
$.ajax({
       type: "GET",
       url: "file2.php",
       data: ?????,
       success: function(result){
         $("#TargetRank").html(result);
       }
     });         
};

Can anyone help me with this?

  • 写回答

4条回答 默认 最新

  • dongpu1881 2016-01-21 14:49
    关注

    The passing part can happen in the script where the variable is defined, so in file1.php. Then you get the following files:

    file1.php:

    <?php
    $user_rank = 123;
    ?>
    <script>
    function getRank()
    {
    $.ajax({
           type: "GET",
           url: "file2.php?user_rank=<?php echo $user_rank; ?>",
           success: function(result){
             $("#TargetRank").html(result);
           }
         });         
    };
    </script>
    

    file2.php:

    <?php
    $user_rank = $_GET['user_rank'];
    echo $user_rank;
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部