我有 iframe,它是动态加载的。此 iframe 中的内容应采用与其所在页面类似的样式。为此,我将 css 文件的链接添加到 iframe 头。它在 Firefox 中工作正常,但在 IE10 中不起作用。是已知问题吗?
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#dialogIframe').load(function(){
$('#dialogIframe')
.contents().find("body")
.html("test iframe");
$('#dialogIframe')
.contents().find("head")
.html('<link rel="stylesheet" type="text/css" href="/css/main.css">');
});
});
</script>
</head>
<body>
Test
<iframe id="dialogIframe" style="width:300px; height:300px; border: none;">
</iframe>
</body>
</html>