从另一页面调用Href

时间:2013-04-23 13:02:17

标签: html5 events hyperlink call article

这是我第一次在这里发帖。

我的网站有一个用HTML5编写的投资组合页面。在页面上,我有多个HTML链接到不同的画廊。

<a href="#II">

可能会调用

<article class="col2 pad_left1 tab-content" id="II"> <ul class="gallery">

如何从其他网页的HTML链接直接调用每个图库?

谢谢,

格雷森

2 个答案:

答案 0 :(得分:2)

通过将其他页面的url添加到href值:

<a href="http://foo/other-page#middle">Foo</a>

答案 1 :(得分:0)

你像你一样在你的链接中放了一个href。网址看起来像:www.example.com#hrefYouPut。在准备好文档时,您执行if子句:

var hash = window.location.hash;
    if (hash == "#hrefYouPut") {
        //my gallery pops up in here
    }