Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在主页上,我将单击具有 id 的图像,然后被定向到显示有关该 id 的更多详细信息的页面。
我想在页面上有一个类似 facebook 的按钮,其中包含有关该特定 ID 的信息,但我不知道在 data-href 中输入什么
<div class="fb-like" data-href="http://www.test.com/php/test.php?id=" data-send="true" data-width="150" data-show-faces="false"></div>
指定它是静态的还是来自数据库?
对于数据库,在 url 中传递 php 变量:
echo "<div class='fb-like' data-href='http://www.test.com/php/test.php?id='".$id."data-send='true' data-width='150' data-show-faces='false'></div>";