201212 月27
jquerymobile 实现提示框
引入JS和CSS文件:
JS代码:
$('').simpledialog2({
mode: 'button',
headerText: '提示',
headerClose: true,
buttonPrompt: '请选择商品',
buttons : {
'确定': {
click: function () {
//$('#outputbutton1').text('OK');
}
}
}
});