我正在使用简单对话框 2:
我有下面的对话框:
$('<div>').simpledialog2({
mode: 'button',
themeHeader: 'b',
headerText: 'Confirm',
headerClose: true,
buttonPrompt: message,
buttons : {
'OK': {
click: function () {
$.mobile.changePage(url, {changeHash: false});
}
},
'Cancel': {
click: function () {
},
icon: "delete",
theme: "c"
}
}
})
截屏:
我想text-align
向左发送消息,并在按钮的左侧和右侧留出一些空间。我怎样才能实现它?
谢谢。