douna1892 2017-03-21 06:58
浏览 83
已采纳

如何在单击时将div的id传递给另一个php页面

I want to pass the id of a particular div in a P.H.P page to another P.H.P page when it is clicked dynamically.The div who's id i want to pass, is created dynamically.So far I have fetched the id of the div dynamically by using Java script, but i cant seem to pass this value to another P.H.P page.

<?php 
    while ($row = mysql_fetch_assoc($result))
{
      $link = $row["video_link"];
                            $video_id = explode("?v=", $link);
                            $video_id = $video_id[1];

?>
 <div class="col-md-4 col-sm-4 col-xs-12">
 <div class="post_list_content_unit">
    <div class="post_list_featured_image"  onclick="markActiveLink(this);" id="<?php echo  $video_id?>">

    <script type="text/javascript">
    function markActiveLink(e) {   
    alert(e.id);
}
</script>
<a href="video_tut.php" title="View post details">
    <img width="370" height="193" src="http://img.youtube.com/vi/<?php echo  $video_id?>/hqdefault.jpg" class="img-responsive wp-post-image" alt="Teen girl sitting with a laptop" />

?>
  • 写回答

1条回答 默认 最新

  • dongyong9224 2017-03-21 07:24
    关注

    Not sure if this will suffice, but you could try this:

    <a href="<?php echo 'video_tut.php?vid_id='.$video_id; ?>" title="View post details">
        <img width="370" height="193" src="http://img.youtube.com/vi/<?php echo  $video_id?>/hqdefault.jpg" class="img-responsive wp-post-image" alt="Teen girl sitting with a laptop" />
    </a>
    

    Instead of getting the id from the div, I added the id as a GET query in the href of the a element. Then in the video_tut.php, you can use this to get the id value:

    if(isset($_GET['vid_id'])){
        $vidID = $_GET['vid_id'];
    }
    

    Here I'm assuming that exposing the $video_id in the URL does not pose some sort of security risks.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 前后端分离的学习疑问?
  • ¥15 stata实证代码答疑
  • ¥15 MATLAB数据处理插值
  • ¥50 husky+jaco2实现在gazebo与rviz中联合仿真
  • ¥15 dpabi预处理报错:Error using y_ExtractROISignal (line 251)
  • ¥15 在虚拟机中配置flume,无法将slave1节点的文件采集到master节点中
  • ¥15 husky+kinova jaco2 仿真
  • ¥15 zigbee终端设备入网失败
  • ¥15 金融监管系统怎么对7+4机构进行监管的
  • ¥15 硬件IIC从模式的数据发送,中断数据的接收,不能用HAL库(按照时序图)