
iframe
你蠢哭我咯
个人博客:www.adebibi.com
展开
-
iframe跨域通信(设置高度)
主页面html<iframe width="100%" id="yqiframe" name="sendMessage" src="https://m.abc.cn/test.html" frameborder="0" scrolling="no"></iframe>主页面js$(function () { var ifr = window.frames['s...原创 2020-03-12 17:56:56 · 355 阅读 · 0 评论 -
iframe使用
<iframe name="son" src="https://www.hao123.com" width="100%" height="100%" scrolling="auto" security="restricted" sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts"> </iframe>转载 2017-08-16 13:28:57 · 765 阅读 · 0 评论 -
iframe监听鼠标点击事件
需要实现的页面逻辑是: 1. 点击父窗体中按钮,显示侧边栏; 2. 点击页面其他区域(iframe)可以隐藏侧边栏先构造页面文档结构:<html> <body> <aside id="sidebar"> <%--这是需要隐藏的侧边栏--%> </aside> <button><%--点击按钮显示侧边栏--%></转载 2017-08-16 15:18:44 · 8540 阅读 · 1 评论