我的工具提示似乎无法正常工作,我做了一个小小提琴并尝试了所有其他选项,但似乎无法让它工作,表单本身有大约 50 个表单字段,但我只在小提琴上添加了 4 个。
我希望工具提示与表单字段的右侧对齐,并且在重新输入表单字段时不会弄乱。
如果你知道怎么做,请帮忙:)
这是代码:
jQuery(document).ready(function(){
jQuery(".information").hide();
jQuery("#info_starttip").show();
jQuery(".textbox").focus(function(){
jQuery(".information").hide();
var getid = this.id;
jQuery("#info_"+getid).position({
of: this,
my: "right top",
at: "right top",
collision: "fit"
}).show();
});
});