안녕을 metacharset를 추가합니다. 나는 이것에서 영감을 얻었지만 아무 것도 효과가 없었다.자바 스크립트 내가 iframe이의 머리에 메타 태그를 추가 할이</p> <pre><code><iframe id=iframeId"> <html> <head></head> <body></body> </html> </iframe> </code></pre> <p>같은 iframe이있는 iframe을 머리에
<iframe id=iframeId">
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head>
<body></body>
</html>
</iframe>
내가 노력
var meta = document.createElement('meta');
meta.httpEquiv = "Content-type";
meta.content = "text/html; charset=UTF-8" >
$('head', window.frames['iframeId'].document).append(meta);
해야하지만 콘솔에 오류가 있습니다 append element in head of an iframe using jquery 그래서 나는이 원하는. 문서가 null입니다.
PS : 나는 IE
'id = iframeId "to'id ="iframeId "'. –