同域下:
//注意:下面的代码是放在和iframe同一个页面中调用
$("#myiframe").load(function () {
var myiframeH = $(this).contents().find("body").height() + 30;
$(this).height(myiframeH);
console.log("a---" + myiframeH);
});
同域下:
//注意:下面的代码是放在和iframe同一个页面中调用
$("#myiframe").load(function () {
var myiframeH = $(this).contents().find("body").height() + 30;
$(this).height(myiframeH);
console.log("a---" + myiframeH);
});
转载于:https://www.cnblogs.com/xiangsj/p/5985489.html