layer.open方法 点击确定才走的方法

layer.open({
    type: 1
    ,title: "退票需知" //不显示标题栏
    ,closeBtn: false
    ,area: ['40%','40%']
    ,shade: 0.8
    ,id: 'LAY_layuipro' //设定一个id,防止重复弹出
    ,btn: ['确认退票', '取消退票']
    ,btnAlign: 'c'
    ,moveType: 1 //拖拽模式,0或者1
    ,content: content
    ,success: function(layero){

    },
    yes: function(index, layero){
        confirmRefund(id);
    },
cancel: function(index) {
   return true; 关闭
}
});

你可能感兴趣的:(layer.open方法 点击确定才走的方法)