我目前正在使用以下脚本从 VBulletin 调用 5 个最新的活动线程:
<script type="text/javascript" src="http://[VBulletin]/external.php?forumids=1&type=js">
</script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 5; x++)
{
document.writeln("<a href=\"http://[VBulletin]/showthread.php?t=" +threads[x].threadid+"\">"+threads[x].title+"</a> (Posted By: "+threads[x].poster+")<br />");
}
</script>
我想让填充的论坛链接在父页面的 iFrame 中打开(上面的代码在所述页面的辅助 iFrame 中)。在标准 HTML 中,它将是:<a href="link" base target="pageframe">
,但我不确定如何在上述代码中的 JS 中执行相同的功能。
提前致谢!