Jquery提示框

1. 确认提示框
function doConfirm() {
    $.msgbox({
        height: 150,
        width: 250,
        content: {
            type: 'confirm',
            content: '删除的商品类型'
        },
        onClose: function(v) {
            if (v) {
                //确定后要执行的操作...
            }
        }
    });
}

[img]http://dl2.iteye.com/upload/attachment/0088/1076/7df595e2-3625-3d12-9c01-3960c4778db6.jpg[/img]



你可能感兴趣的:(jquery)