我正在使用 jQuery .get 从另一个页面抓取元素;我想获得“第 n 个”href 属性,我正在尝试使用下面的代码。如您所见,我正在尝试将 ID 的值更改为特定的 URL。我认为我使用 .find 存在问题,但无法弄清楚。非常感谢您的帮助。
JS
$.get('/file.xml', function(data)
{
var $links = $(data).find('a').attr('href'),
selectedlink = $links.eq(selectedValue);
var link = selectedlink.text();
$("#fvlink").val(link);
});
带有 URL 的 HTML 页面
<body>
<li><h2><a href="http://www.whatever1.coy">2060</a></h2><span class="desctext">This is the second slide</span></li>
<li><h2><a href="http://www.whatever2.com">2057</a></h2><span class="desctext">This is the third slide</span></li>
<li><h2><a href="http://www.whatever3.com">2056</a></h2><span class="desctext">This is the fourth slide</span></li>
</body>