我怎样才能传递这个id变量?

时间:2017-05-12 18:44:00

标签: javascript php

我需要传递此ID

<img id="id_<?php echo $post_id;?>">

在“这里”

req.open('GET','post.php?slug=??here??',true);

每个id都不同,所以我需要定位每个帖子的“id”。现在我该如何传递id

1 个答案:

答案 0 :(得分:0)

非常模糊,但你在考虑这样的事情吗?

<a href='post.php?slug=<?=$post_id?>'>
  <img id="id_<?php echo $post_id;?>">   
</a>