0

一旦按下,我的兄弟如何清除任何可能指向我的网站的链接会再次打开页面并成为我网站的顶部栏,例如以下

http://www.example.com/index.html

[编辑] 如何在网站顶部呈现一个栏,在其正文中显示来自其他网站的内容。

我有这首颂歌可以从其他网站获取 RSS

gfeedfetcher.prototype._displayresult=function(feeds){
    var rssoutput=(this.itemcontainer=="<li>")? "<ul>\n" : ""
    gfeedfetcher._sortarray(feeds, this.sortstring)
    for (var i=0; i<feeds.length; i++){
        var itemtitle="<a href=\"" + feeds[i].link + "\" target=\"" + this.linktarget + "\" class=\"titlefield\">" + feeds[i].title + "</a>"
        var itemlabel=/label/i.test(this.showoptions)? '<span class="labelfield">['+this.feeds[i].ddlabel+']</span>' : " "
        var itemdate=gfeedfetcher._formatdate(feeds[i].publishedDate, this.showoptions)
        var itemdescription=/description/i.test(this.showoptions)? "<br />"+feeds[i].content : /snippet/i.test(this.showoptions)? "<br />"+feeds[i].contentSnippet  : ""
        rssoutput+=this.itemcontainer + itemtitle + " " + itemlabel + " " + itemdate + "\n" + itemdescription + this.itemcontainer.replace("<", "</") + "\n\n"
    }
    rssoutput+=(this.itemcontainer=="<li>")? "</ul>" : ""
    this.feedcontainer.innerHTML=rssoutput
}

我需要点击链接在其他窗口中打开我的框架

4

1 回答 1

0

该网站只是顶部的标题

<iframe></iframe>

在 w3schools http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_iframe查看更多信息

于 2012-06-23T23:33:03.837 回答