2013-08-25 130 views
0

我正在嘗試檢索iframe中的任何點擊的URL,而無需修改鏈接代碼。我的目標是獲取用戶在iframe正文外部的iframe中單擊的URL。我已經試過如下:如何在Iframe中點擊任何鏈接時獲取網址?

document.write(location.href); 
document.write(window.location.href); 
document.write(window.location); 
document.write(document.URL); 
document.write(document.location); 
+0

你在哪裏寫了這個,它應該在作爲你的iframe源代碼的頁面主體 –

+0

我無法修改進入iframe的內容,它仍然有可能嗎? – user2714639

回答

0
document.getElementById("myFrame") 
.contentDocument.addEventListener("click", yourfunction, false); 

不要,這可能只是內容來自同一個domain工作。

+0

這就是問題,內容或iframe源不在同一個域中,我不允許修改它的源代碼。 – user2714639

+0

然後,您可以做的唯一工作就是購買您顯示內容的域;) –

相關問題