1

皆さん、ユーザーを別のページにリダイレクトし、クリックされたリンクに基づいてリダイレクトする方法を見つけようとしています。情報を含むページのその場所にそれらを配置します。

これをJQueryでコーディングすることを計画していました。私にお知らせください :)

みんなありがとう、そして素晴らしい木曜日を過ごしていることを願っています!!!

編集:

<div class="online_training">
     <div class="training_image">
       <a href="../services.php">...</a>
     </div><!-- .training_image -->
     <div class="top-textArea">
       <h2><a href="../services.php"></a>....</h2>
       <p>
                       .....
       </p>
     </div><!-- .top-textArea -->
</div><!-- .online_training -->



    I have mutiple of these and so the part to notice where I want to have 
it redirect to and go to that part of the page is the where the .training_image <a> is and the <h2> one is.
4

3 に答える 3

4

最も簡単な方法は、アンカー タグを使用することです。

最初のページで:

<a href="/otherpage#spot1">Go to spot1</a>

他のページ:

<a href="#" name="spot1"></a>

otherpage が読み込まれると、spot1 という名前のアンカーまでスクロールします。

于 2013-04-04T23:41:31.553 に答える