<script>
jQuery("iframe").load(function() {
console.log('can you hear me?');
$('iframe').contents().find('#findme').html('lorium ipsom');
});
</script>
我无法让这个工作。我试图在 iframe 内(在同一台服务器上)找到一个 div,然后在其中注入一些 html。
有什么想法吗?
<script>
jQuery("iframe").load(function() {
console.log('can you hear me?');
$('iframe').contents().find('#findme').html('lorium ipsom');
});
</script>
我无法让这个工作。我试图在 iframe 内(在同一台服务器上)找到一个 div,然后在其中注入一些 html。
有什么想法吗?