2017-04-22 22 views
1

HTMLのanchorタグに問題があります。私がanchorを置く場所を得るためにリンクをダブルクリックするか、まったく動作しないことがあります。このidは、文書の最後にほとんどであることをアンカータグが正しく機能しない

<nav> 
    <ul> 
     <li><a href="#opt">option1</a></li> 
    </ul> 
</nav> 

<div id="opt"> 

注意:ここで

は一例です。この divの前に、セクション/ヘッダー/記事/その他のような他のタグがあります。

私の以前のものが私のanchorタグを妨害するかどうかはわかりません。

注:驚くべきことにIEではうまくいきます。 Chromeに問題があります。

詳細情報が必要な場合はお知らせください。

+0

HTMLに1つ以上の 'id =" opt "'がありますか? – Badacadabra

+1

こんにちは@Badacadabra、私はアドビブラケットは、物事を台無しにしていると思います。私はファイル自体からhtmlを開いて、うまくいきました。私はBracketsで動的プレビューを使用していましたが、多分バグがあります。 – Maxi

+0

多分...あなたのコメントをありがとう。 :) – Badacadabra

答えて

0

<nav> 
 
    <ul> 
 
     <li><a href="#opt">option</a></li> 
 
     <li><a href="#opt1">option1</a></li> 
 
     <li><a href="#opt2">option2</a></li> 
 
     <li><a href="#opt3">option3</a></li> 
 
    </ul> 
 
</nav> 
 

 
<div id="opt"> 
 
<h1>option</h1> 
 
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 
<br><br><br> 
 
</div> 
 
<div id="opt1"> 
 
<h1>option1</h1> 
 
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like) 
 
</p> 
 

 
<br><br><br> 
 
</div> 
 
<div id="opt2"> 
 
<h1>option2</h1> 
 
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p> 
 

 
<br><br><br> 
 
</div> 
 
<div id="opt3"> 
 
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 
 
</p> 
 

 
<br><br><br> 
 
</div>

0

他のタグはアンカータグのデフォルトの動作を変更しません。また、他のブラウザ(IEなど)でも動作する場合は、文書内にリンクの動作を変更するスクリプトがないものと想定しています。

Chromeで問題が発生していることを知っていると、Chromeの拡張機能が疑わしい場合や、(変更された)ブラウザ自体が原因と思われる場合があります。お使いのブラウザのバージョンと拡張機能を参照してください。

+0

HI @Argaコメントありがとう!私はそれを見てみましょう – Maxi

関連する問題