如何在对话框小部件jquery ui中更改处理拖动?

时间:2017-04-01 14:25:03

标签: jquery jquery-ui

我想在此小部件中更改句柄拖动但我不知道如何执行此操作

enter image description here

看看上面的图片,我不会处理第一部分,但是我想把它改成它里面的元素。

1 个答案:

答案 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>