答案 0 :(得分:0)
我决定举例说明如何设置默认区域的样式。可以添加最小化等,但不是真的建议。它们比jQuery UI更适合迷你win。
$( function() {
$( "#dialog" )
.dialog()
.parents(".ui-dialog")
.find(".ui-dialog-titlebar")
.css("background", "orange");
} );
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div id="dialog" title="汉语/漢語">
<p style="text-align:right;font-weight:bold;">some text here</p>
</div>