我在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。