我有一个包含iframe的页面,并希望主页面上的图片在iframe中加载另一个页面。我想我应该使用链接的目标,但我不太确定。 非常感谢任何帮助。
答案 0 :(得分:0)
这应该有用。
<html>
<body>
<a href="javascript:void(0);" onclick="document.getElementById('testId').src = 'http://www.yahoo.com'"><img src="myImage.jpg"/></a>
<iframe id="testId" width=100 height=100 src="http://www.google.com" />
</body>
</html>
'target'属性通常用于在新窗口/标签中打开或定位现有属性。帧和窗口之间的通信最好通过javascript完成。
答案 1 :(得分:0)
<a href="example.html" target="myframe"><img src="image.jpg" alt="" /></a>
<iframe name="myframe" src="test.html"></iframe>