我用:
$(document).tooltip({
position: {
my: 'left center',
at: 'right+60 center'
}
});
它可以工作,但是对于我不想要工具提示的元素也会显示工具提示。
我知道我可以使用
$("textarea[name=thename]").tooltip();
$("textarea[name=thename2]").tooltip();
....
$("input[name=name3]").tooltip();
但是可以只设置一次位置吗?
编辑
我试过了
$.tooltip({
position: {
my: 'left center',
at: 'right+60 center'
}
});
但没有