Vue中使用iframe 、加载完成后回调事件
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
template:
<div class="qr-warp-box" v-loading="iLoading">
<iframe :src="qrUrl" style="width: 100%; height: 300px" frameborder="0" scrolling="no" ref="iframe"></iframe>
</div>
script:
// vue生命周期钩子函数 -- 更新之后
updated() {
if (this.$refs.iframe) {
// IE
if (this.$refs.iframe.attachEvent) {
this.$refs.iframe.attachEvent('onload', () => {
// 加载成功
this.iLoading = false;
});
} else {
this.$refs.iframe.onload = () => {
// 加载成功
this.iLoading = false;
};
}
}
},
vue2+elementui完整代码如下:
<template>
<div class="container-warp">
<div class="" v-loading="true">加载的东西</div>
<div class="qr-warp-box" v-loading="iLoading">
<iframe :src="qrUrl" style="width: 100%; height: 300px" frameborder="0" scrolling="no" ref="iframe"></iframe>
</div>
</div>
</template>
<script>
export default {
data() {
return {
iLoading: true,
qrUrl: ''
};
},
created() {
// 模拟异步调用接口
setTimeout(() => {
this.qrUrl = 'https://www.baidu.com';
}, 2000);
},
updated() {
if (this.$refs.iframe) {
// IE
if (this.$refs.iframe.attachEvent) {
this.$refs.iframe.attachEvent('onload', () => {
// 加载成功
this.iLoading = false;
});
} else {
this.$refs.iframe.onload = () => {
// 加载成功
this.iLoading = false;
};
}
}
}
};
</script>
<style lang="scss" scoped>
.container-warp {
width: 100%;
height: 100%;
padding: 20px;
}
</style>
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献16条内容
所有评论(0)