0
我喜歡在jQuery中訪問具有特定名稱的錨(a)元素以獲取其位置。我試過如下:使用名稱屬性與jQuery訪問錨元素
HTML:
<a name="test">An anchor.</a>
的JavaScript:
var top = $("a [name=test]").position().top;
返回空對象。
var top = $("a").position().top;
和
var top = $("[name=test]").position().top;
發現它。我如何編寫它以獲取名稱爲「test」的錨元素?