我擁有動態加載的iframe。這個iframe中的內容應該像它所在的頁面一樣。爲此,我將鏈接添加到了iframe頭部的css文件。它在Firefox中運行正常,但在IE10中無效。它是已知的問題嗎?IE10不支持iframe中的樣式錶鏈接
<!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>
之所以這並不在IE瀏覽器,你可以找到[MSDN:innerHTML的(http://msdn.microsoft.com/en-我們/庫/ IE/ms533897%28V = vs.85%29.aspx/HTML)。 – Teemu
「不工作」總是IE的一個特點:P –