0

我目前遇到一个问题,即当网页包含 iframe 加载 utf16 文本文件时。该页面无法在 IE7 和 8 上触发 window.onload 事件。我也尝试了 jQuery 方法 $(document).ready(),但它也无法正常工作。Firefox 和 chrome 运行良好。

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=utf-16" />
<script>
window.onload = function () {
  alert("test");
};
</script></head>
<body>
<iframe src="http://localhost:8080/test/utf16.txt"  ></iframe>
</body></html>

未触发 window.onload 事件。在这种情况下,如何在 IE 上触发“onload”事件。谢谢你。

4

0 回答 0