我有这个从我的数据库中提取的php文件
<?php
$cdb = new PDO('mysql:dbname=xxx;host=localhost', 'xxx', 'xxx');
foreach ($cdb->query("SELECT * FROM images ORDER BY posted DESC LIMIT 3") AS $img)
{
$twofirst = substr($img['hash'], 0, 2);
echo '
<a style="position: relative; display: block; height: 140px;" href="/booru/post/view/' . $img['id'] . '" target="_blank">
<img src="booru/timthumb.php?src=images/' . $twofirst . '/' . $img['hash'] . '&h=125&w=125&q=100" width="125px" style="border-style: none"/>
</a>
';
}
模板
<div class="section">
<div class="secondaryContent">
<h3>New Cosplays</h3>
<iframe marginwidth="0" marginheight="0" width="125px" height="400px" scrolling="no" frameborder=0 src="image.php">
</iframe>
</div>
</div>
我有更好的方法可以让它发挥作用吗?
如果我不添加target="_blank"
它只是打开iframe中不是我想要的页面
有人说要使用AJAX,但我不知道如果有人能给我看一个很棒的例子,怎么开始呢。
感谢您的时间。
答案 0 :(得分:1)
使用target =“_ top”而不是“_blank”。