【获取当前页面显示的el-dialog元素】判断当前整个vue应用中是否有弹窗在显示,代码:
$("div.el-dialog__wrapper").each(function(i) {
if ($(this).css("display") !== "none" && $(this).css("position")==='fixed') {
console.log($(this)[0])
}
});
推荐阅读
- 防御式CSS是什么(这几点属性重点防御!)
- Vite + Vue3 初体验 —— Vue3 篇
- vue移动端下拉刷新和上拉加载组件,体积小运行快
- Vue中将json数据导出为Excel表格
- [Vue] mounted阶段获取不到dom的原因及解决方法
- h5通过ping++集成几种支付
- VUE 巧用$attrs和inheritAttrs提高组件的可扩展性
- vuex在F5时数据丢失的两种办法
- 滚动定位到指定位置