1

使用 iFrame 和 html 链接,我可以使用 html 链接的 TARGET 属性并为 iframe 设置名称来更改 iframe 的 src。这很好用...

如何使用嵌入而不是 iframe 来做同样的事情?

所以我从

<embed name="test1" src="http://www.example.com"></embed>

如果有帮助,嵌入在对象类中。

有任何想法吗?

4

2 回答 2

0

Javascript :)

<a onclick="document.getElementById('emb').src='whatever'">Whatever</a>
<a onclick="document.getElementById('emb').src='whatever2'">Whatever2</a>
<embed id="emb" src="default"></embed>
于 2012-05-11T12:25:31.433 回答
-2

不,你不能。只需使用 iframe。

于 2012-05-11T12:23:22.907 回答