获取JavaScript中死链接的URL

时间:2013-08-26 23:39:12

标签: javascript url broken-links

我有一个像http://www.tzxabcxyz.com

这样的死链接

我要去那个链接,Firefox会告诉我“Firefox无法在www.tzxabcxyz.com找到服务器。”

当我在书签中使用以下代码时:   var u = document.URL;

我没有收到字符串“http://www.tzxabcxyz.com”,而是收到字符串“about:neterror?e = dnsNotFound& u = http%3A // www.tzxabcxyz.com /&cc = UTF-8& amp ; d =火狐%20can%27吨%20find%第二十条%20server%20AT%20www.tzxabcxyz.com“

我的问题是如何获取我需要的URL而不是“about:neterror”字符串?

1 个答案:

答案 0 :(得分:0)

找到它,“var u = document.location.href;”而不是“var u = document.URL;”

看起来“document.location.href”不会被连接中的任何错误所污染。