iframe的一些小操作
Posted u013035477
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe的一些小操作相关的知识,希望对你有一定的参考价值。
eg:<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="/statics/js/jquery.min.js"></script>
</head>
<iframe src="http://www.myztgl.com/2018/kaoyan/testFeature/index.html" height="100%" width="100%" frameborder="0" id="myiframe" name="child"></iframe>
</html>
获取当前url信息:
父页面:var url = window.location.search;
子页面:var hostUrl = window.parent.location.search;
调取分别的js的function:
父页面调取子页面:child.window.editChildTDK( )(child是iframe的name,editChildTDK是子页面的function)
子页面调取父页面:window.parent.submitForm();(submitForm是父页面的function)
修改当前页面TDK:
//title
document.title = "修改模板";
//key+description
var metas = document.getElementsByTagName("meta");
metas.description.content = keys;
metas.keywords.content = descriptions;
以上是关于iframe的一些小操作的主要内容,如果未能解决你的问题,请参考以下文章
如何在父页面中操作/获取iframe页面中的元素?这个小问题折腾了我快半个小时,所以记下来吧!
如何在父页面中操作/获取iframe页面中的元素?这个小问题折腾了我快半个小时,所以记下来吧!