iframe中的Jquery不适用于外部div

时间:2018-01-20 06:16:18

标签: javascript jquery html iframe

我在iframe中为iframe之外的div编写javascript / jquery代码。它不起作用。

这是我想要运行的

<a id="TextData">Call function which is inside of Iframe</a>

<iframe id="preview-frame">
<script>
 $(function() {
     setTimeout(function(){ alert("hello");
     $("#TextData").html("update with this text");
     }, 1000);
 });
</script>

我使用了超时的所有东西,但它不起作用。

我想使用在iframe中编写的jQuery来更改TextData html。

0 个答案:

没有答案