博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery-自己封装的弹框
阅读量:6811 次
发布时间:2019-06-26

本文共 1128 字,大约阅读时间需要 3 分钟。

(function () {CDK={    cfm:function(resFun,errFun){            var confirm=document.createElement('div');            confirm.setAttribute('style','position:fixed;top:0;left:0;width: 100%;height: 100%;z-index:99;background-color: rgba(0, 0, 0,0.3);');            $(confirm).addClass('confirmkuang');            $(confirm).html(                '
提示框

确定要执行此操作吗?

' ) $("body").append(confirm); $('.addson').animate({'opacity':'1'},400) $('.addConfirm').on('click',function(){ if (resFun){ resFun(); } }) $('.closealter').on('click',function(event){ $('.addson').animate({'opacity':'0'},400) setTimeout(function(){ $('.confirmkuang').remove() },400) }) }}})(jQuery);//(jQuery)代表jQuery执行完毕后

调用:

  js事件函数直接调用

CDK.cfm(res=>{    console.log('确认执行')},err=>{   console.log('取消执行') })

jQuery点击调用

 

转载于:https://www.cnblogs.com/weilizou/p/10904640.html

你可能感兴趣的文章
当主库发生宕机,从库如何接管主库
查看>>
卷影副本(Shadow Copies)
查看>>
重新回归
查看>>
AngularJs 知识
查看>>
Linux下修改Mysql的用户(root)的密码
查看>>
Spring.NET的AOP怎么玩
查看>>
Linux下配置Mysql允许远程访问详解
查看>>
nginx作为tcp代理 虚拟主机配置 模板
查看>>
超市购物小票案例
查看>>
file.src.rpm 使用方法的简单介绍
查看>>
如何恢复【cisco 3560】交换机的【密码】
查看>>
Map接口
查看>>
一步一步教你做ios推送
查看>>
DOCKER windows 7 详细安装教程
查看>>
Linux:-bash: ***: command not found
查看>>
用D盘做游戏菜单 省内存又省心
查看>>
全新Linux+Python高端运维班-Linux vim 末行模式,sed命令,基本bash脚本
查看>>
搭建局域网CentOS Yum服务器
查看>>
关于MySQL里的found_row()和row_count()解释及用法
查看>>
windows10除了自带的edge能上网,别的应用都不能上网
查看>>