需要更改元标记
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
从个人域名通过iframe访问的外部网站的文本/ html到text / plain 的。
代码:
<html lang="en">
<head>
<style type="text/css">
html, body, div, iframe { margin:0; padding:0; height:100%; }
iframe { display:block; width:100%; border:none; }
</style>
</head>
<body>
<div>
<iframe src="http://other-domain-website.com">
</iframe>
</div>
</body>
</html>
答案 0 :(得分:0)
如果您需要更改更多,那么您可以尝试将此网站作为文本。解析它,更改标记然后插入iframe,使用src =&#34; mydomain / parse.php&#34;。
或者更简单的方法,你可以使用JQuery:
$("#iframe").contents().find('meta[http-equiv="Content-Type"]').attr('content', 'text/plain; charset=utf-8');
文档中的更多信息:http://api.jquery.com/contents/