<a href="#">Click here</a>
是什麼意思?<a href="#">Click here</a>是什麼意思?
13
A
回答
23
這意味着如果HREF沒有指定書籤「渲染將訪問者在頁面頂部的超鏈接,並在這裏與,明顯不提供信息,文字單擊標籤它」
3
<a href="#Bookmark1" target="frame1">
Link text that leads to Bookmark1 in the current document
</a>
<a href="http://www.foo.com/index.html#Bookmark1" target="frame1">
Link text that leads to Bookmark1 in index.html at www.foo.com
</a>
聲明,瀏覽器將默認爲文檔的頂部。
+0
非常感謝。 :-) – Unknown 2011-04-26 12:00:15
3
鏈接Click here的#鏈接到當前頁面的頂部。但是這些類型的鏈接通常也用於由JavaScript生成的鏈接。使用像YUI和JQuery這樣的現代JavaScript庫,不再需要爲html明確添加「onClick」屬性,例如,請參閱JQUery API:click。
相關問題
- 1. 什麼是<a href="?request=register"> Register</a>中的href?
- 2. IE上<a href> click
- 3. <>是什麼意思?
- 4. <>是什麼意思?
- 5. <+>是什麼意思?
- 6. {< >}是什麼意思?
- 7. a >> = b是什麼意思?
- 8. 爲什麼<a href=#A> and jquery click function not work together?
- 9. href表達式<a href="javascript:;"></a>做什麼?
- 10. 「a = a || []」是什麼意思?
- 11. 「特質A <:B」是什麼意思?
- 12. 什麼是ocaml類型'a。 'a - >'是什麼意思?
- 13. 數據( - >)a b是什麼意思?
- 14. `a> b`是什麼意思?
- 15. 這是什麼意思?公式一=> A - > [A] - >布爾
- 16. <a>標籤裏面的span屬性是什麼意思?</p> <pre><code><div id="div-1"> <a href="next" span id="next">hidfoli</a> </div> </code></pre> <p>我想知道什麼呢<code>span</code>內<code>a</code>標籤的意思是:
- 17. <a href> automatic link without click
- 18. 加載關於<a href="url_of_data"> click
- 19. <a class="none">究竟是什麼意思?
- 20. struct decay <T,R(A ...,...)>是什麼意思
- 21. //在<a>標記中的意思是什麼
- 22. 「<xs:sequence />」是什麼意思?
- 23. <meta - data>是什麼意思?
- 24. `Vec <T>`是什麼意思?
- 25. <[email protected]>是什麼意思?
- 26. jQuery。 $('<img/>')是什麼意思?
- 27. numeric_limits <double> :: digits10是什麼意思
- 28. Action <Action>是什麼意思?
- 29. <String,String>是什麼意思?
- 30. <namespace> :: class是什麼意思?
從技術上說,它可能不是頁面的頂部 - 它可能是頁面上其他地方的錨點,或者它可能是觸發jquery事件的點擊事件 – stack72 2011-04-26 10:26:49
@Paul - no。 「#」是頁面的頂部。 「#something」可能是頁面的不同部分,但#單獨是頂部。 – Quentin 2011-04-26 10:32:05
@Paul - 並且* *可能是一個附加到元素的單擊事件,它會覆蓋正常行爲,但引用的代碼只是指向頁面頂部的鏈接。 – Quentin 2011-04-26 10:32:43