链接#div和URL

时间:2013-05-21 12:51:48

标签: javascript html ajax hyperlink

嘿伙计们可以链接div和url吗?基本上我想要一个2个链接。一个用于定位#div的链接,另一个用于定位div中的实际网站网址。

我的目标是div,但需要在div中加载url。

<a href="http://site.com/product/product-link" class="class-here">

我只能使用此网址访问div:

<a href="#modal" class="class-here">

描述它的更好方式就是这样,但这显然不起作用:

<a href="http://site.com/product/product-link" target="#modal" class="second">

我在这些标签中隐藏div #modal:

{{#product_page}}

Content is here

{{/product_page}}

很难解释,所以更多细节让我知道。

3 个答案:

答案 0 :(得分:2)

你很亲密,就是这样:

 <a href="http://site.com/product/product-link#modal">

您可以通过将其附加到网址的末尾来链接到任何ID,例如,here是我评论的链接

答案 1 :(得分:0)

我不太明白你想做什么,但这可能有用

id属性可用于在HTML文档中创建书签。

<div id="tips">Useful Tips Section</div>
Create a link to the "Useful Tips Section" inside the same document:

<a href="#tips">Visit the Useful Tips Section</a>
Or, create a link to the "Useful Tips Section" from another page:

<a href="http://www.w3schools.com/html_links.htm#tips">
Visit the Useful Tips Section</a>

Source

答案 2 :(得分:0)

我发现这个解决方案有效:

HREF链接:

<a href="javascript:$.closeit({ direction: 'left', href: 'http://site.com/product/product-link' })">

将此脚本放在页面底部:

<script>

    $(".class-here").closeit({ direction: "left", modal: true });
</script>

感谢所有帮助我的人。