js如何实现两个iframe之间传值,下面web建站小编给大家详细介绍一下具体实现代码!
父组件传参
<template>
<view>
<iframe :src="`/demoA?$[params]`"></iframe>
</view>
</template>
<script>
export default {
data() {
return {
params: ''
};
},
mounted() {
const params = {
name: 'web建站',
age: '3',
}
this.params = encodeURIComponent(JSON.stringify(params))
window.addEventListener('message', this.handleMessage)
},
methods: {
handleMessage(event) {
console.log(event, '事件')
if(event.data.status === 'ok') {
console.log(event.data.params, '参数值')
}
}
}
}
</script>
子组件接收参数
<template>
<view>
<p>demoA发来的参数:{{params}}</p>
<button @click="sendMess">发送数据</button>
</view>
</template>
<script>
export default {
data() {
return {
params: ''
};
},
created() {
const params = JSON.parse(decodeURIComponent(window.location.hash.split('?')[1]))
this.params = params
},
methods: {
sendMess() {
window.parent.postMessage({
status: 'ok',
params: {
id: 12
}
}, '*');
}
}
}
</script>
上面是“js如何实现两个iframe之间传值”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3659.html
workflows工作流
一个人一条船一条鱼ComfyUI工作流
一个浑身皮毛看起来像丘巴卡的3d动漫人物
一个超凡脱俗的女明星的特写镜头ComfyUI工作流
一群蜜蜂和一个六边形蜂巢ComfyUI工作流
一只透明老虎骨骼标本ComfyUI工作流
一个黄色的海绵宝宝ComfyUI工作流
一种长着彩虹翅膀的虫子comfyui工作流
森林里一只空灵的犀鸟ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

在线生成金属文字
制作一个好玩的倒计时
黑客入侵效果代码
css3+js菜单点击动态效果
css3实现星球旋转
纯html+css做一个3d统计效果
用svg画出游泳池动画效果
canvas空间文本射线










