如何获得链接的URL?

$('.l').eq(0).href

是我想要做的,但是没有定义。

因此,给定jQuery选择的 anchor 元素,您如何获得href属性?

最佳答案

尝试:

$('.l').eq(0).attr("href")

08-07 09:45