2016-04-30 96 views
1

我之前的鏈接工作,但現在他們不工作。此代碼中是否存在特定的語法錯誤?謝謝。我的鏈接不工作

<p>A page dedicated to the mediocrity that is me.</p> 
 
     <a class="photo_hover3" href="AboutMe.html"><img src="images/10551720_896406100374418_8341950779733681498_o.jpg" width="240" height="290" alt="picture1" onmouseover="src='images/image1.jpg'" onmouseout="src='images/10551720_896406100374418_8341950779733681498_o.jpg'"/></a> 
 
     <a href="AboutMe.html"><span class="button">Read more</span></a> 
 
     </section> 
 
     <section class="group2"> 
 
     <h3>Classes</h3> 
 
     <p>A page on the classes I'm taking Spring Semester.</p> 
 
     <a class="photo_hover3" href="Classes.html"><img src="images/black-tarheel-sign-jpg.jpg" width="240" height="290" alt="picture2" onmouseover="src='images/image2.jpg'" onmouseout="src='images/black-tarheel-sign-jpg.jpg'"/></a> 
 
     <a href="Classes.html"><span class="button">Read more</span></a> 
 
     </section> 
 
     <section class="group3"> 
 
     <h3>Interests</h3> 
 
     <p>A page describing my hobbies and interests.</p> 
 
     <a class="photo_hover3" href="Interests.html"><img src="images/blackwhite,camera,canon,hands,nails,photography-eec2d4683bab11e4adc6fd271cda2979_h.png" width="240" height="290" alt="picture3" onmouseover="src='images/image3.png'" onmouseout="src='images/blackwhite,camera,canon,hands,nails,photography-eec2d4683bab11e4adc6fd271cda2979_h.jpg'"/></a> 
 
     <a href="Interests.html"><span class="button">Read more</span></a>

+1

因爲鏈接發生了什麼變化工作? 「不工作」是什麼意思?點擊它們時什麼也沒有發生?或者瀏覽器顯示頁面未找到錯誤?要麼...? – nnnnnn

+1

爲什麼你在圖像src中有逗號? ' theblindprophet

+0

鏈接不會轉到他們合適的html頁面 – Geek117

回答

0

正如其他人在你的鏈接工作問題的意見都表示最有可能是您正在使用的路徑。檢查路徑是否正確的一種方法是直接在瀏覽器中輸入它,例如www.example.com/AboutMe.html/,如果這樣會將您帶到AboutMe頁面,那麼您的路徑很好,如果不是,則需要檢查您的文件夾/文件結構並找到關於我的頁面所在的位置。如果頁面在另一個文件夾,那麼你就需要將該文件夾添加到您的路徑,像這樣:

 www.example.com/anotherfolder/AboutMe.html 

和你的鏈接應該是這樣的:

<a href="/anotherfolder/AboutMe.html">About Me</a> 
+0

它工作正常,但其他頁面鏈接工作正常,除了我在本文中提到的鏈接之外,它們具有相同的菜單項代碼。 – Geek117