我尝试过使用一些css样式...... position: relative; right: 20px;
这是我的小提琴:http://jsfiddle.net/supplement/j77eB/
因此,当有人在工具提示链接上盘旋时,我希望将道具移到右边而不是底部。
$(function () {
$(document).tooltip({
position: { my: "left+15 center", at: "right center"}
content: function () {
return $(this).prop('title');
},
show: null,
close: function (event, ui) {
ui.tooltip.hover(
function () {
$(this).stop(true).fadeTo(400, 1);
},
function () {
$(this).fadeOut("400", function () {
$(this).remove();
})
});
}
});
});