从它自己获取iFrame location.href

时间:2017-02-21 16:25:28

标签: javascript jquery html iframe postmessage

我有一个iFrame,我想得到这个的location.href,而不是来自父,而是来自它。 这里是我想要的代码:

var scanForUrl = "<script>window.setInterval(function(){ parent.postMessage( //Location Href of iFrame// , '*'); }, 2000);</script>";

我不知道是否可能,我委托给你。

提前致谢

1 个答案:

答案 0 :(得分:0)

iframe使用src属性而不是href

let source = $("iframe").attr("src");