asdjkl 2014-02-13
jquery ui的dialog默认弹出位置为页面的中部,如果页面特别长,则弹出框可能在第一屏中看不到,需要自定义弹出的位置:
jquery ui的dialog默认弹出位置为{ my: "center", at: "center", of: window }
具体参见dialog的api:http://api.jqueryui.com/dialog/#option-position
{ my: "center", at: "center", of: window }
Specifies where the dialog should be displayed. The dialog will handle collisions such that as much of the dialog is visible as possible.
Note: The String
and Array
forms are deprecated.
Multiple types supported:
of
option defaults to the window, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options."center"
, "left"
, "right"
,"top"
, "bottom"
.Code examples:
Initialize the dialog with the position
option specified:
可以通过自定义position来自定义弹出位置,position文档:
http://api.jqueryui.com/position/
"center"
)"right"
will be normalized to "right center"
, "top"
will be normalized to "center top"
(following CSS convention). Acceptable horizontal values: "left"
, "center"
, "right"
. Acceptable vertical values: "top"
, "center"
, "bottom"
. Example: "left top"
or "center center"
. Each dimension can also contain offsets, in pixels or percent, e.g., "right+10 top-25%"
. Percentage offsets are relative to the element being positioned."center"
)my
option for full details on possible values. Percentage offsets are relative to the target element.null
)pageX
and pageY
properties will be used. Example: "#top-menu"
我最终采取的方式为:
position: { my: "center", at: "left+800px top+500px ", of: window }
//结合jquery ui ,优化系统提示 $(function() { $("<div id='dialog' title='系统提示'>").appendTo("body"); $( "#dialog" ).dialog({ autoOpen: false, modal: true, position: { my: "center", at: "left+800px top+500px ", of: window } , buttons: { "确定": function() { $( this ).dialog( "close" ); } } }); }); function showMessage(message) { $( "#dialog" ).html("<p>"+message+"</p>"); $( "#dialog" ).dialog("open"); }
jquery easyui dialog可以两种方式使用1)定义div,使用iframe<div id="openRoleDiv" class="easyui-window" closed="true