我想使用 javascript 获取更新的 iframe 网址?
像这样:
<iframe src="http://yahoo.com" id="ifrm" onload="iframeurl()" ></iframe>
<script>
function iframeurl() {
var ifrm = document.getElementById("ifrm");
alert(ifrm.src);
}
</script>
但上面的代码不起作用。我怎样才能做到这一点?我将在 iframe 中使用外部链接,该链接未托管在我使用上述代码的同一域中。
请帮忙。
谢谢
再次感谢。http://yahoo.com只是一个例子。同样,我的域是 szacpp.com,我需要获取 other.com 的链接。你的意思是我需要将 htaccess 放在 other.com 中,而我没有访问域。