layer弹窗插件comfirm()的坑

layer弹窗插件官方API并没有给出图标和按钮同时改变的写法,今天我硬是给试出来了,我自己都怕自己。

代码如下:

layer.confirm('进行实名认证',{icon:3,btn:['实名认证并购买','跳过实名认证']},function(index){
   layer.close(index);
   location.href="";   
});

你可能感兴趣的:(layer弹窗插件comfirm()的坑)