我的网站上有一个iframe。它显示了一篇文章。我需要创建一个按钮来增加该HTML页面的字体大小。按钮必须位于父页面中。可能吗 ?怎么样?
答案 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');