自定义弹窗
不需要依赖,纯原生JS
var params = {
'type':0,
/*标题*/
'title': '这是标题',
/*内容/可以插入html*/
'content': '这是个自定义弹窗',
/*按钮文字*/
'buttons': ['取消', '确定']
};
/*open*/
isDialog.open(params, function (data) {
/*回调 type = 0 == 取消 ,1 == 确定*/
console.log(JSON.stringify(data))
});
已做了自适应(vw单位),兼容所有端,如需要更多自定义功能或反馈与BUG,可联系QQ:910547462