美文网首页
plugin-x0popup

plugin-x0popup

作者: 快乐的大鹅 | 来源:发表于2017-05-11 15:33 被阅读0次
  • 安装
    x0popup.min.css
    x0popup.min.js

  • 使用

function x0popup(func) {
  x0p({
      title: '请确认',
      text: '是否执行当前操作',
      icon: 'info',
      buttons: [{
        type: 'cancel',
        text: '取消'
      }, {
        type: 'info',
        text: '确定'
      }]
    },
    function(button) {
      if (button == 'info') {
        func();
      }
    });
}

相关文章

  • plugin-x0popup

    安装x0popup.min.cssx0popup.min.js 使用 参考传送门

网友评论

      本文标题:plugin-x0popup

      本文链接:https://www.haomeiwen.com/subject/lvbotxtx.html