Confirm
x0p('Confirmation', 'Are you sure?', 'warning');
A confirmation popup with a default icon.
弹出对话框Prompt
An input popup with a callback function. 弹出对话框
x0p('Enter Your Name', null, 'input',
function(button, text) {
if(button == 'info') {
x0p('Congratulations',
'Your name is ' + text + '!',
'ok', false);
}
if(button == 'cancel') {
x0p('Canceled',
'You canceled input.',
'error', false);
}
});