替代嵌入标签?
Alternative to embed tag?
我正在尝试使用嵌入标记将一个 PHP 页面嵌入到另一个 HTML 页面中,但是在 Firefox 上它只显示为一个灰色框。它在 google chrome 上运行良好。根据 google 搜索,<embed>
已弃用,他们建议使用 <object>
标签,但是是否可以将其与 text/html 一起使用,而不是图像或 swf/media ?
我当前的代码:<embed src="post.php" height="35" width="850">
您可以尝试使用以下方法:
<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>
我正在尝试使用嵌入标记将一个 PHP 页面嵌入到另一个 HTML 页面中,但是在 Firefox 上它只显示为一个灰色框。它在 google chrome 上运行良好。根据 google 搜索,<embed>
已弃用,他们建议使用 <object>
标签,但是是否可以将其与 text/html 一起使用,而不是图像或 swf/media ?
我当前的代码:<embed src="post.php" height="35" width="850">
您可以尝试使用以下方法:
<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>