如何从href值获取确定的URL?

kbe*_*bec 2 javascript jquery url-routing

我有一些与各种hrefs的链接,并希望得到这个值的确定网址,如:

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
Run Code Online (Sandbox Code Playgroud)

顺便说一下,我不想要点击处理代码.我能做到.

wro*_*ock 5

$("a:first").prop("href")将为您提供第一个锚标记的完整URL,而不是为$("a:first").attr("href")您提供href属性中的文本.