我正在处理地图应用程序,我想在地图对象上发生mouseOver时使用工具提示。
我可以使用不带html的jquery ui工具提示,只能使用javaScript吗?
例如
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
}
}
答案 0 :(得分:0)
在过去的项目中,我发现the jQuery plugin imageMapster在创建图像地图方面具有重要价值。它包含一种处理工具提示的简单方法。
以下是使用工具提示的示例:
// if Asparagus selected, change the tooltip
if (e.key === 'asparagus') {
newToolTip = "OK. I know I have come down on the dip before...";
}