jquery UI dialog: how to initialize without a title bar?

前端 未结 23 1786
春和景丽
春和景丽 2020-11-29 15:03

Is it possible to open a jQuery UI Dialog without a title bar?

23条回答
  •  心在旅途
    2020-11-29 15:51

    I figured out a fix for dynamically removing the title bar.

    $("#example").dialog(dialogOpts);
    // remove the title bar
    $(".ui-dialog-titlebar").hide();
    

    This will remove all elements with the class 'ui-dialog-titlebar' after the dialog box is rendered.

提交回复
热议问题