加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
newFrame.html 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
kaikingg 提交于 2019-07-02 21:14 . '初始化源码'
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>在frame里嵌套frame</title>
<style type="text/css">
input,a{display: block;line-height:30px;}
iframe{
float:left;
width:48%;height:250px;margin-top:40px;background:#abc;border:1px solid blue;
}
#newFrame2{ float:right; }
</style>
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
var newFrame = {
name:'这是newFrame的变量值',
};
function callLevelFrame() {
var ff=parent.$("#frame")[0].contentWindow.ff;
parent.$("#frame")[0].contentWindow.ss();
console.log('parent.$("#frame")[0].contentWindow.ff: '+ff);
}
function callLevelFrame1() {
console.log($("#newFrame1")[0].contentWindow.iframe1);
}
function frameFn(){
console.log('这是frame里面的方法franmeFn');
}
$(function(){
// setTimeout(function(){
// // console.log(parent.$("#frame"))
// // console.log(parent.$("#frame")[0].contentWindow.ss())
// // console.log(parent.document.getElementById('frame').contentWindow.ss());
// },500)
})
</script>
</head>
<body>
<h1>newFrame</h1>
<a href="#" onClick="callLevelFrame();">调用兄弟iframe</a>
<a href="#" onClick="callLevelFrame1();">调用自己的子页面iframe1变量</a>
<input id="nn" type="text" value="sdafsdfsa"/>
<iframe id="newFrame1" name="newFrame1" src="newFrame1.html" frameborder="0"></iframe>
<iframe id="newFrame2" name="newFrame2" src="newFrame2.html" frameborder="0"></iframe>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化