我有一个变量
var s="<p>long content.....</p><p>long content....</p>"
我把它放在一个 iframe 中
$('#iframeid').contents().find('html').html(s);
我根据浏览器大小动态设置了 iframeid 的 translateX。因此,当浏览器很大时,都会显示两个段落。当浏览器很小时,第一段会显示在浏览器上。
现在当浏览器很小时,我使用
document.getElementById('iframeid').contentWindow.document.body.innerText
我得到“长内容...... ”当我使用
document.getElementById('iframeid').contentWindow.document.body.innerHTML
我完全得到了变量的值。我只想获取显示位置的html内容
任何帮助表示赞赏。提前致谢。