0

我正在开发地图应用程序,我想在地图对象上发生 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
    }
}
4

1 回答 1

0

在过去的项目中,我发现 jQuery 插件 imageMapster在创建图像地图方面非常有价值。它包括一个处理工具提示的简单方法。

以下是使用工具提示的示例:

        // if Asparagus selected, change the tooltip
        if (e.key === 'asparagus') {
            newToolTip = "OK. I know I have come down on the dip before...";
        }

看这个例子

这里还有几个例子

于 2013-06-06T17:28:22.633 回答