我正在开发地图应用程序,我想在地图对象上发生 mouseOver 时使用工具提示。
我可以在没有 html 且仅使用 javaScript 的情况下使用 jquery ui 工具提示吗?
例如
var name
var myObjectOptions = {
featureOver: function(name) {
//here is where I would like to show a jquery tooltip that is at mouse x,y and displays the name variable
},
featureOut: function(name) {
//on mouse out the tooltip would not longer be displayed
}
}