文章详情页
javascript - 在iframe子页面 通过window.parent.document打开父页面的modal层不能正常关闭
问题描述
大家好 我想问一下 在iframe子页面 通过window.parent.document打开父页面的modal层,这样父页面的modal关闭方法$('#modal').modal('hide')不能正常关闭,有没有大神知道这是什么原因
问题解答
回答1:你在子页面里$('#modal').modal('hide')肯定不能关闭呀!你可以在子页面里调用父页面的一个方法,这个方法里写$('#modal').modal('hide')!回答2:
$(’#id’, window.parent.document).modal(’hide’);
回答3:最后采取了一种不太好的方法暂时解决,先show再hide,$('#modal').modal('show').modal('hide'),这样可以解决,只是弹出层关闭的时候会因为show闪一下,还没有找到好的解决办法
标签:
JavaScript
相关文章:
1. docker-compose中volumes的问题2. debian - docker依赖的aufs-tools源码哪里可以找到啊?3. docker网络端口映射,没有方便点的操作方法么?4. PHP中的$this代表当前的类还是方法?5. docker不显示端口映射呢?6. angular.js - angular内容过长展开收起效果7. golang - 用IDE看docker源码时的小问题8. python的MySQLdb包rollback对create语句无效吗?9. javascript - 用swiper.js实现h5多篇文章滑动 点击文章跳转全文是另外的页面 点击返回滑动界面怎么定位到相应的swiper_slide10. javascript - avalon.js ms-on 事件绑定无效 ?
排行榜