嵌入不在IE中工作

时间:2012-02-01 08:29:33

标签: html

我正在尝试将我的A站点嵌入到B站点,它在Firefox中工作正常..但在IE中存在问题(7& 8)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
            <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <object data=http://time.mysite.pvt width="800" height="800"> <embed src=http://time.mysite.pvt width="800" height="800"></embed>
     Error: Embedded Data could not be displayed.

</object>
</head>
</html>

请帮我解决这个问题

1 个答案:

答案 0 :(得分:2)

尝试使用iframe?

<iframe src="http://time.mysite.pvt" width="800" height="800"></iframe>
  

http://www.iframehtml.com/