用一个链接更改两个iframe
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用一个链接更改两个iframe相关的知识,希望对你有一定的参考价值。
This simple little snippet will allow you to change two iframes with the click of just one link.
/* javascript CODE IN <head> */ <script language="javascript"> function loadTwo(iframe1URL, iframe2URL) { parent.FRAME1.location.href=iframe1URL parent.FRAME2.location.href=iframe2URL } </script> /* THE LINK CODE */ <a href="javascript:loadTwo('special1.htm','special2.htm')">special link</a>
以上是关于用一个链接更改两个iframe的主要内容,如果未能解决你的问题,请参考以下文章
结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url