JS是否可以跨文件同时控制多个iframe页面的应用技

这篇文章给大家详细介绍了JS是否可以跨文件同时控制多个iframe页面的应用技巧,非常不错,具有一定的参考借鉴价值,需要的朋友参考下吧

有个办法,建议你的有连接的iframe改成include包含的文件,然后记得把文件名改成shtml,或者asp.代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <meta http-equiv="refresh" content="3;URL=#" /> </head> <script type="text/javascript"> function change(){ var a = document.getElementById("iframea"); var b = document.getElementById("iframeb"); a.setAttribute("src","http://www.163.com"); b.setAttribute("src","http://www.sina.com"); } </script> <body> <!--#include file="z.html" --> <iframe src="https://www.baidu.com/"></iframe> <iframe src="https://www.g.cn/">></iframe> </body> </html>

被包含的文件代码:

<a href="#">其中内容点击链接更新两个iframe</a>

总结

以上所述是小编给大家介绍的JS是否可以跨文件同时控制多个iframe页面的应用技巧,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjggwx.html