doudui1850 2014-04-08 22:38
浏览 17
已采纳

$ _REQUEST ['id']从一个由javascript调用到另一个php页面的php文件中的页面

I'm trying to get the value 3 from this link: index.php?subtopic=example&id=3 Normally I would use the $_REQUEST['id'] but I'm facing another situation here.

I got the example1.php:

<script type="text/javascript" src="js/chatbox.js"></script>
...
<div id="chat_box"></div>

And then the chatbox.js:

setInterval( function() {
$('#chat_box').load('chatbox.php');
} , 100 );

And finally the chatbox.php:

echo $_REQUEST['id'];

but I can't get the id value here :/ Please Help!!!

  • 写回答

2条回答 默认 最新

  • dongshengyin0147 2014-04-08 22:50
    关注

    Basically you want to parse the id out of the URL and send it to the chat - let's do this:

    <script type="text/javascript">
      function getID() {
        var tmp=location.href.split('?');
        if (tmp.length!=2) return -2;
        tmp=tmp[1].split('&');
        for (i=0;i<tmp.length;i++) {
          var param=tmp[i].split('=');
          if (param.length!=2) continue;
          if (param[0]!="id") continue;
          return parseInt(param[1]);
        }
        return -3;
      }
    
      var chaturl='chatbox.php?id='+getID();
    
    </script>
    <script type="text/javascript" src="js/chatbox.js"></script>
    ...
    <div id="chat_box"></div>
    

    ...

    setInterval( function() {
    $('#chat_box').load(chaturl);
    } , 100 );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化