jQueryUI 1.6

1\让dialog打开时没有右上角的关闭按钮:

    $('.ControlEdit').dialog({
        title: '用户登陆',
        modal: false,
        autoOpen: true,
        resizable: false,
        closeOnEscape: false,
        position: [600, 250],
        width: 290,
        //这句起作用,去掉了css
        open: function() {
            $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove();
        }
    });

你可能感兴趣的:(UI,css)