在创建函数而不是
my: target.length ? 'bottom center' : 'bottom right',
at: target.length ? 'top center' : 'bottom right',
类型
my: 'bottom right',
at: target.length ? 'top right' : 'bottom right',
在更新功能而不是
api.options.position.target = !i ? [$(window).width() - 5,$(window).height()] : [
pos.left + width,
pos.top - height - 5
];
api.set('position.at', !i ? 'bottom right' : 'top center');
api.set('position.my', !i ? 'bottom right' : 'bottom center');
类型
api.options.position.target = !i ? [$(window).width() - 5,$(window).height()] : [
pos.left + width,
pos.top
];
api.set('position.at', !i ? 'bottom right' : 'top right');
看看这个:http: //jsfiddle.net/bCcAB/1/