首页 前端知识 html5中 使用object标签完成页面之间的通信

html5中 使用object标签完成页面之间的通信

2024-05-14 23:05:13 前端知识 前端哥 102 886 我要收藏

html5中 使用object标签完成页面之间的通信

父页面页面代码:

<div class="foot-menus">
	<div class="foot-menus-context">
		<object data="./components/reportCheck/foot-menus.html" class="foot-menus-obj"></object>
	</div>
</div>

子页面就是:foot-menus.html

子页面代码:

<img src="../../img/detial/logo-white.png" onclick="goIndex()" alt="">



script中:
function goIndex(){
	// 向父页面发送消息
		  window.parent.postMessage('redirectToIndex', '*');
}

父页面中对应:

//父页面中的script:
 window.addEventListener('message', function(event){
		var message = event.data;
		if(message == "redirectToIndex"){
		//在这建立你的方法体或者新建个方法。
	}
})


转载请注明出处或者链接地址:https://www.qianduange.cn//article/8655.html
标签
评论
发布的文章

1、SpringBoot简介及返回json

2024-05-25 09:05:17

mysql 的jsonTable使用

2024-05-25 09:05:41

MySQL中的JSON

2024-05-25 09:05:32

JSON简介(1)

2024-05-25 09:05:22

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!