在父页面中如何修改iframe中嵌套的子页面的字体大小和样式,急!急!貌似涉及到了跨域的问题希望各
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在父页面中如何修改iframe中嵌套的子页面的字体大小和样式,急!急!貌似涉及到了跨域的问题希望各相关的知识,希望对你有一定的参考价值。
在父页面中如何修改iframe中嵌套的子页面的字体大小和样式,急!急!貌似涉及到了跨域的问题希望各位大神们帮忙解决,我的财富值用完了,希望亲们能见谅
没法改 何况 完全不需要这样 你为何不能去改子页面的东西呢 还有一种特效 是看起来好像是子页面的特效 其实是父界面 通过绝对定位 相对定位 这些 覆盖 iframe实现的 也许你可以考虑这种方式 参考技术A 1.htm母窗口代码:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
<script language=javascript>
function gogo()
document.frames["f"].document.styleSheets.mycss.addRule("P","color:green");
</script>
</head>
<body>
<iframe id="f" src=2.htm></iframe>
<p><input type="button" value="按钮" name="B3" onclick="gogo();"></p>
</body>
</html>
2.htm iframe引用的网页代码:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
<style id="mycss" type=text/css>
p color:red
</style>
</head>
<body>
<p>22222222</p>
<p>22222222222</p>
<p>22222222222</p>
</body>
</html> 参考技术B 两个iframe地址不同?属于两个域名?
layui弹窗 iframe嵌套页面内的弹窗如何覆盖到父级页面
参考技术A 系统使用iframe布局,在iframe内点开的layer弹窗,遮罩层只覆盖了子页面。想要覆盖全部页面,就需要用到parent.layer.open()在父级页面打开弹出层。
<注意:在外面的父级页面和iframe里面的子页面都需要,引用layui.js和layui.css>
以上是关于在父页面中如何修改iframe中嵌套的子页面的字体大小和样式,急!急!貌似涉及到了跨域的问题希望各的主要内容,如果未能解决你的问题,请参考以下文章
jsp中父页面如何调用iframe中的src子页面中的js方法