我想要一个在iframe中打开的链接,该链接已经将其源标记链接到另一个页面。链接和iframe位于同一页面上。这是代码:
<div>
<iframe src="itihaas1.php" id="wrapper" height="1000" width="800" frameborder="0" scrolling="no"><p>Your browser does not support iframes.</p></iframe>
</div>
<div><a href="itihaas2.php" target="wrapper">Page 1</a></div>
如果不可能那么怎么办呢?任何soln都可以。
感谢。
答案 0 :(得分:0)
如果您使用jQuery,您可以执行以下操作:
<a href="something.html" id="myLink"></a>
<script>
$(function() {
$('#myLink').click(function() {
var iframe = $('#myIframe');
iframe.attr("src", "newpage.html");
});
});
</script>
如果您使用普通的JavaScript,您应该在这里找到答案: change iframe source in ie using javascript