我想設置iframe的HTML代碼使用JavaScript設置,正常工作與Firefox和Chrome,但只顯示的鏈接,而無需使用Internet Explorer 9的JavaScript IFRAME與innerHTML的Internet Explorer中
的JavaScript代碼樣式:
window.frames["iview"].document.body.innerHTML = txt;
把txt變量得到下面的HTML代碼:
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
a:link {
color: #0000C0;
background-color: #FFFFFF;
text-decoration: none;
target-new: none;
}
a:hover {
color: #0000FF;
background-color: #808000;
text-decoration: underline;
target-new: none;
}
</style>
</head>
<body>
<a href="http://www.domain.com">link....</a>
</body>
</html>
Internet Explorer中顯示的鏈接,而不是CSS樣式...
你把所有上面的代碼放入iframe的正文部分? – 2011-05-28 09:40:09
是的,有沒有辦法設置頭部以及? – Joe 2011-05-28 10:13:41