替代嵌入标签?

时间:2015-01-20 20:07:44

标签: html embed

我正在尝试使用embed标签在另一个HTML页面中嵌入一个PHP页面,但是在Firefox上它只显示为灰色框。它在谷歌浏览器上工作正常。根据谷歌搜索,<embed>已被弃用,他们建议使用<object>标记但是可以使用text / html而不是图像或swf / media吗?

我目前的代码:<embed src="post.php" height="35" width="850">

1 个答案:

答案 0 :(得分:2)

您可以尝试使用以下内容:

<object data=http://www.example.com/page.php width="850" height="35"> 
    <embed src=http://www.example.com/page.php width="850" height="35"> </embed>
    Error: The page could not be embedded.
</object>
相关问题