加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
frame.html 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
kaikingg 提交于 2019-07-02 21:14 . '初始化源码'
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>frame</title>
<style type="text/css">
a{display: block;line-height:30px;}
.textarea-box{
width:100%;
height:50px;
overflow-y:auto;
}
</style>
</head>
<body>
<h1>frame</h1>
<a href="#" onClick="callMainMethod();">调用父级方法,并且打印父级变量</a>
<a href="#" onClick="callMainField();">调用主窗口变量</a>
<a href="#" onClick="callMainHtml();">调用子iframe组件</a>
<input id="dd" type="text" value="1111111111"/>
<textarea class="textarea-box" id="textareaDom"></textarea>
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
var ff="adfdasfdsafdsafdsaf";
var txtDom = document.querySelector('#textareaDom');
function test() {
console.log($("#dd").val());
}
function callMainField() {
console.log(parent.gg);
}
function callMainMethod() {
parent.ggMM();
}
function callMainHtml() {
console.log(parent.$("#frame").attr("id"));
}
// 接受父级参数
function getParaentVal() {
if(window.hellobaby){
txtDom.value = '接受到来自父级 main 的传参:'+'\n'+window.hellobaby
}else{
txtDom.value = ''
}
}
function ss(){
console.log('这是frame方法');
console.log(ff)
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化