javascript – 什么是Object相当于jQuery UI中的Array位置?

jQuery UI Dialog小部件有一个
position选项,可以是Object,String或Array(不推荐使用String& Array表单).数组可以包含从视口左上角偏移的像素中的x,y坐标对.我不清楚Object的等价物是什么.
position documentation中的Object示例使用“left”或“center”之类的字符串,而不是像素坐标.

你会怎么写

position: [42, 80]

使用Object表示法?

最佳答案 您可以使用对象表示法为位置选项指定偏移量.

$('.selector').dialog({ position: { my: 'left+42 top+80', at: 'left+42 top+80' } });

http://jsfiddle.net/rknjG/

点赞