我知道我可以在 html 页面中有 iframe,比如 parent.htm,我可以有这样的东西
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<img alt="http://localhost/images/header.png" src="http://localhost/images/header.png" width=700px height=100px />
<iframe src="Child.htm"></iframe>
</body>
</html>
但是我可以将 html 直接放入 iframe 而不是将其指向文件(child.htm)。
谢谢。