我有一些与各种href有关的链接,并希望获得此值的确定网址,例如:
http://localhost/ -> http://localhost/
localhost -> http://mysite.example/localhost
firstpage -> http://mysite.example/firstpage
/anotherpage -> http://mysite.example/anotherpage
#anchor1 -> http://mysite.example/currentpage#anchor1
/#anchor2 -> http://mysite.example/#anchor2
BTW我不想要点击处理代码。我能做到。
答案 0 :(得分:5)
$("a:first").prop("href")
将为您提供第一个锚标记的完整网址,而不是$("a:first").attr("href")
,它会为您提供href属性中的文字。