gpt4 book ai didi

javascript - iframe contentWindow 即使在 .load 函数之后仍未定义

转载 作者:行者123 更新时间:2023-11-30 14:46:25 32 4
gpt4 key购买 nike

我想设置 iframe 的高度与其内容相匹配。但是即使将 iframe.contentWindow 放入 .load() 中,它也会返回 undefined。这是代码:

$(document).ready(function() {
var myIFrame = $('#iframe');
console.log(myIFrame.contentWindow); //getting undefined
});

有人能告诉我这有什么问题吗?非常感谢。

最佳答案

好吧,所以 contentWindow 是 native Javascript,因为我使用的是 jQuery,所以我必须先获取原始 DOM 对象。获取 contentWindow 的正确方法:

var win = $('#iframe').get(0).contentWindow;

For More Information

关于javascript - iframe contentWindow 即使在 .load 函数之后仍未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48852888/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com