2013-08-26 68 views
0

我有一個像http://www.tzxabcxyz.com獲取死鏈接URL在JavaScript

我要那個鏈接,Firefox會告訴我,死鏈接「的Firefox不能找到在www.tzxabcxyz.com服務器。」

當我在書籤中使用以下代碼時: var u = document.URL;

而不是獲取字符串 「http://www.tzxabcxyz.com」,我得到的字符串輸入「about:?neterror E = dnsNotFound & U =的http%3A // www.tzxabcxyz.com/& C = UTF-8 & d =火狐%20can%27噸%20find%第二十條%20server%20AT%20www.tzxabcxyz.com「。

我的問題是如何獲得我需要的URL而不是「about:neterror」字符串?

+0

在該字符串的結尾? 'u.slice(0,-1).split(「%20」)。pop();'? –

回答

0

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

它看起來像「document.location.href」不會被連接中的任何錯誤所污染。