摘要: 1、iframe嵌套的页面里,下载功能下载失败 在iframe标签加上属性 sandbox=“allow-downloads” 2、iframe嵌套的页面里,使用腾讯云播放器,播放器不能全屏问题 在 iframe 标签里设置属性 allowfullscreen,示例代码: <iframe allow 阅读全文
posted @ 2022-05-11 19:25 Hello程序媛 阅读(713) 评论(0) 推荐(0)
摘要: 方法一: const arr = [ {id: 1, name: "张三"}, {id: 2, name: "AAA"}, {id: 3, name: "ZCZ"}, {id: 1, name: "张三"}, {id: 3, name: "ZCZ"} ] let hash = [] const ne 阅读全文
posted @ 2022-05-11 17:56 Hello程序媛 阅读(441) 评论(0) 推荐(0)
摘要: 连续点击按钮,提示框会出现很多个。现在需要优化,连续点击时,只出现一个提示弹窗 解决方法: 在出现弹窗之前,先关闭全部弹窗 this.$message.closeAll(); this.$message.error('错了哦,这是一条错误消息'); 阅读全文
posted @ 2022-05-11 17:54 Hello程序媛 阅读(876) 评论(0) 推荐(1)