整理vue中使用iframe

更新时间:2023-06-22 07:06:49 阅读: 评论:0

整理vue中使⽤iframe
基本格式
<iframe src="demo.html" height="300" width="500" name="demo" scrolling="auto" sandbox="allow-same-origin allow-scripts"></iframe>基本属性:
src iframe页⾯地址,有同域跨域之分
height iframe⾼度
width iframe宽度
name iframe命名,可通过window.frames[xxx]被调⽤
scrolling iframe滚动模式
sandbox html5新特性,⽤于限制iframe的功能
1. script脚本不能执⾏
2. 不能发送ajax请求
3. 不能使⽤本地存储,即localStorage,cookie等
4. 不能创建新的弹窗和window
5. 不能发送表单
6. 不能加载额外插件⽐如flash等
| 配置                | 效果                                            |
| -------------------- | --------------------------------------------- |
| allow-forms          | 允许进⾏提交表单                                      |
| allow-scripts        | 运⾏执⾏脚本                                        |
| allow-same-origin    | 允许同域请求,⽐如ajax,storage                        |
| allow-top-navigation | 允许iframe能够主导p进⾏页⾯跳转                  |
| allow-popups        | 允许iframe中弹出新窗⼝,⽐如,window.open,target="_blank" |
| allow-pointer-lock  | 在iframe中可以锁定⿏标,主要和⿏标锁定有关                      |
sandbox="allow-forms allow-same-origin allow-scripts"
匆匆那年主题曲使⽤iframe的正确姿势
诧异的反义词
let iframe = ElementById('demo');
let iwindow = tWindow; // 获取iframe的window对象
let idoc = tDocument; // 获取iframe的document对象
也可以通过 window.frames[iframeName] 来调⽤iframe
实际是这么获取
let iframe = ElementById('iframe');
iframe.attributes[1].tWindow;
iframe使⽤⽗级内容的正确姿势
饮酒诗句
通过
window.lf,
window.parent,
这三个属性分别获取⾃⾝window对象,⽗级window对象,顶级window对象微信收不到消息
iframe1.lf === iframe1
iframe1.parent === iframe2
iframe2.parent === window
懒猪起床铃声

iframe ⽅法
滚动
window.frames.scrollTo(x, y);
获取节点距顶部的距离
桂枝茯苓胶囊的作用
阮小五的绰号let node = ElementById(`node${this.current}`);
四大区域let offtTop = node.attributes[1].ownerElement.offtTop; // 这⾥ attributes 下标不固定得具体查看节点信息

本文发布于:2023-06-22 07:06:49,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1011674.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:不能   允许   对象   获取   节点   限制   同域
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图