我的网站顶部有3个链接。我想在点击链接时将不同的文件提取到iframe中。我得到了html文件,但我无法得到php文件。
<a href="records.php" id="records" onClick="changeFrame(this.href); return false">View Records</a>
答案 0 :(得分:3)
这是你想要做的吗?
<a href="http://bing.com" target="myiframe">bing</a>
<a href="http://google.com" target="myiframe">google</a>
<iframe src="#" name="myiframe"></iframe>