2014-02-20 55 views
0

我已經連接了一個iframe進行付款。如何在提交後獲得REAL iframe源碼?

<iframe src="https://direct.tranzila.com/xxxx/iframe.php?ppnewwin=2&lang=il&nologo=1&sum=9&pdesc=simple&currency=1&userid=123" name="tranzila_payment" id="tranzila_payment" width="370" height="455"></iframe> 

現在支付成功後,iframe重定向到success.php頁面。

我想從父窗口檢查它。但$('#tranzila_payment')。attr('src')具有相同的值(iframe.php)。

是否有任何其他方式來檢查iframe是否重定向到目標頁面?

感謝,

回答

0

src屬性保持,因爲它是在頁面加載,即使在iframe移動到一個新的位置,讓你需要去的當前位置從iframe中的窗口對象得到它。試試這個:

document.getElementById('tranzila_payment').contentWindow.location.href 

值得注意的是,您通過iframe.contentWindow訪問的任何內容都是隻讀的。