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 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀