1

こんにちは、div と url をリンクすることは可能ですか? 基本的には 2 つのリンクを 1 つにまとめます。#div を対象とする 1 つのリンクと、div 内の実際のサイト URL を対象とする 1 つのリンク。

div をターゲットにしていますが、div に読み込むための URL が必要です。

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

この URL を使用してのみ 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}}

説明するのが難しいので、詳細を教えてください。

4

3 に答える 3

2

あなたは近かった、それは単にこれです:

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

例として、URLの最後に追加することで、任意のIDにリンクできます。ここに私のコメントへのリンクがあります

于 2013-05-21T12:54:09.977 に答える
1

あなたがやりたいことはよくわかりませんが、これはおそらくうまくいくでしょう

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>

ソース

于 2013-05-21T12:57:39.917 に答える