我正在嘗試使用具有 srcdoc 屬性的 iframe 元素在頁面上顯示電子郵件。目前我正在使用此代碼來調整 iframe 的大小。$(document).ready(function() { $('iframe').each(function(index, el) { el.onload = function() { el.style.height = el.contentWindow.document.body.scrollHeight + 'px'; } })});但它并不總是有效。有時內容會正確調整大小,有時則不會。我見過這樣的解決方案https://medium.com/better-programming/how-to-automatically-resize-an-iframe-7be6bfbb1214,但據我所知,這需要我在 srcdoc 內容中注入一些 js 和然后監聽 window.onmessage 事件。我覺得這是一個麻煩的解決方案。這是唯一的解決方案,還是有更好的方法來處理這個問題?
使用 srcdoc 屬性自動調整 iframe 的大小
呼喚遠方
2022-05-14 14:41:15