这是我第一次在这里发帖。
我的网站有一个用HTML5编写的投资组合页面。在页面上,我有多个HTML链接到不同的画廊。
<a href="#II">
可能会调用
<article class="col2 pad_left1 tab-content" id="II">
<ul class="gallery">
如何从其他网页的HTML链接直接调用每个图库?
谢谢,
格雷森
答案 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
}