我可以编辑显示为iframe的HTML页面的样式吗?

时间:2018-01-28 16:40:14

标签: javascript jquery html

我的网站上有一个iframe。它显示了一篇文章。我需要创建一个按钮来增加该HTML页面的字体大小。按钮必须位于父页面中。可能吗 ?怎么样?

1 个答案:

答案 0 :(得分:0)

可能重复:

How can I access iframe elements with Javascript?

此外:

http://www.dyn-web.com/tutorials/iframes/refs/iframe.php

您可以从JavaScript访问iframe DOM元素并检查

ifrm.contentDocument

ifrm.contentWindow.document属性。

// reference to iframe with id 'ifrm'
var ifrm = document.getElementById('ifrm');

// using reference to iframe (ifrm) obtained above
var win = ifrm.contentWindow; // reference to iframe's window
// reference to document in iframe
var doc = ifrm.contentDocument? ifrm.contentDocument: ifrm.contentWindow.document;
// reference to form named 'demoForm' in iframe
var form = doc.getElementById('demoForm');